body {
    font-family: Arial, sans-serif;
    background-color: #679499;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: #302f2f;
    text-align: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 50px;
    color: white;
}

.menu-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.menu-buttons button {
    background-color: #444;
    color: white;
    border: none;
    padding: 20px 40px;
    margin: 0 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-grow: 1;
    max-width: 200px;
}

.menu-buttons button:hover {
    background-color: #666;
}


.game-window {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; 
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 630px;
    height: 530px; 
    position: relative; 
    user-select: none; 
    margin-left: -15%;
    z-index: 1;
}

.counter {
    font-size: 50px;
    margin-bottom: 20px;
    position: absolute;
    top: 20px; 
    left: 50%;
    transform: translateX(-50%); 
}

.shop-button,
.restaurant-button {
    color: #000000;
    font-size: 40px;
}

.shop-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
}

.restaurant-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: transparent;
}

.click-button {
    width: 200px;
    cursor: pointer;
    transition: transform 0.1s;
    margin: 20px 0; 
}

.click-button:active {
    transform: scale(0.9);
}

button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background: #000000;
    color: white; 
    transition: background-color 0.3s;
    margin: 5px 0;
    user-select: none;
}

button:hover {
    background-color: #aaa; 
}

button:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

.shop-window,
.restaurant-window {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 630px; 
    height: 530px;
    position: relative;
    user-select: none;
    margin-left: -15%;
}

label {
    margin-right: 10px;
    display: block; 
    margin-top: 720px; 
    margin-left: 10px; 
}

input[type="color"] {
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-top: 720px;
    margin-left: 0;
}

.shop-title {
    text-align: center; 
    font-size: 36px;
    margin-bottom: 20px; 
}

.text {
    font-size: 25px;
}

#comboNotification {
    display: inline-block; 
    font-weight: bold; 
    font-size: 25px;
    position: absolute; 
    top: 115px;
    left: 115px;
}

.combo-animation {
    animation: combo-fade 3s ease-in-out;
}

@keyframes combo-fade {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}