body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #e6ffe6; /* Very light green */
}

h2 {
    color: #333;
}

input {
    display: block;
    margin: 10px auto;
    padding: 10px;
    border: 2px solid #4CAF50;
    border-radius: 5px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

/* Blooket-style buttons */
.blooket-btn {
    background-color: #4CAF50; /* Green color */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px; /* Rounded edges */
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px #3b7d3b; /* Drop shadow */
    transition: all 0.2s;
    margin-top: 10px;
    display: inline-block;
    cursor: pointer;
}

.blooket-btn:hover {
    background-color: #45a049; /* Slightly darker green on hover */
}

.blooket-btn:active {
    box-shadow: 0 2px #3b7d3b; /* Pressed effect */
    transform: translateY(2px);
}


button:hover {
    background-color: #45a049;
}
/* Logout Button Styling */
.logout-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #e74c3c; /* Red color for logout */
    box-shadow: 0 4px #c0392b; /* Shadow for 3D effect */
}

.logout-btn:hover {
    background-color: #c0392b; /* Darker red on hover */
}

.logout-btn:active {
    box-shadow: 0 2px #a93226;
    transform: translateY(2px);
}

/* Clicker Button - Fix Background & Keep Blooket Style */
/* Center the Button */
#clickButton {
    background-color: #4CAF50;  /* Blooket-like green */
    border: none;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Nice button shadow */
    transition: transform 0.1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Centers the button horizontally */
    width: 120px; /* Set a defined width */
    height: 120px; /* Set a defined height */
}

/* Clicker Button Hover Effect */
#clickButton:hover {
    transform: scale(1.05);
}

/* Clicker Button Image (Increases Size) */
.button-icon {
    width: 100px;  /* Increase image size */
    height: 100px; /* Increase image size */
    object-fit: contain; /* Prevent distortion */
}
/* all of this code, along with index.html, stats.html, script.js, style.css, market.html, and blook.html was made by Ai. */

