
#click-button {
    background: transparent;
    border: none;
    cursor: pointer;
    user-select: none;
}

#click-button:hover {
    filter: brightness(0.9);
}

#money {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.game-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    padding: 20px;
    align-items: start;
}

.game-area {
    text-align: center;

}

body {
    background-color: #ffddd8;
}

.shop-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.5);
}

.shop-item h3 {
    margin: 0 0 4px 0;
    font-size: 1em;
}

.shop-item p {
    margin: 0;
    font-size: 0.7em;
    opacity: 0.8;
}

.shop-item button {
    background-color: bisque;
    border: 2px solid rgb(155, 77, 0);
    border-radius: 4px;
    color: rgb(92, 46, 0);
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
}

#click-button img {
    transition: transform 0.05s ease-in-out;
}

.floating-text {
    position: fixed;
    color: #5c2e00;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 1.5em;
    pointer-events: none;
    animation: floatUp 0.8s ease-out forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(-80px);
        opacity: 0;
    }
}