@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Sour Gummy', cursive;
    background: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
}

#title {
    font-size: 1.4rem; /* Adjust font size for better visibility */
    padding: 0;
    margin: 0;
}
#additional-info {
    font-size: 1.2rem; /* Set font size for additional info */
    color: #555; /* Set color for better readability */
    margin-top: 5px; /* Add margin for spacing */
}
#game-container {
    max-width: 800px;
    margin: 10px auto; /* Adjusted margin for better spacing */
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 2px dashed #333;
}
#cash-display {
    font-size: 32px;
    margin-bottom: 20px;
}
button {
    font-family: 'Sour Gummy', cursive;
    font-size: 16px;
    padding: 12px 24px;
    background: #ffeb3b;
    color: #333;
    border: 2px dashed #333;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
button:hover {
    background: #fdd835;
    transform: translateY(-2px);
}
button:disabled {
    background: #b0bec5;
    cursor: not-allowed;
}
#hustle-shop div, #multiplier-shop div {
    border-bottom: 2px dashed #b0bec5;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#multiplier-shop div.owned {
    background-color: lightgreen;
}
#gig-card {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border: 2px dashed #ffeb3b;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
#achievements {
    margin-top: 20px;
    font-size: 16px;
}
#hustle-shop p {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
#hustle-shop p span {
    background: #e4e4e4;
    color: #333;
    font-size: 12px;
    padding: 2px 3px;
    border-radius: 5px;
    border: 1px solid #b0bec5;
    transition: background 0.3s ease; /* Add transition for background */
}

#pause-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    z-index: 1000;
}

#pause-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 99;
}