body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f5f5f5;
    color: #333;
}

#game-container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

#cookie-container {
    margin-bottom: 20px;
}

#cookie {
    width: 200px;
    height: 200px;
    cursor: pointer;
    transition: transform 0.1s;
}

#cookie:hover {
    transform: scale(1.1);
}

#store {
    margin-top: 20px;
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #4CAF50;
    color: white;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
