#tokenClicker {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    min-height: 100vh;
    background-color: black;
    color: magenta;
    font-family: Impact, sans-serif;
    padding: 40px;
    box-sizing: border-box;
}

.clicker-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    padding-top: 150px;
    padding-bottom: 150px;
    border: 5px solid magenta;
}

.dashboard-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    gap: 20px;
}

.game-layout {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}


#inventoryDisplay {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#tokenDisplay {
    font-size: 48px;
    padding-bottom: 10px;
}

#tpsDisplay {
    font-size: 20px;
    padding-bottom: 25px;
}

#tokenButton {
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: black;
    border: none;
}

#tokenButton img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    vertical-align: middle;
}

.game-layout {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin: 25px 0;
    width: 100%;
}

#store {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid orange;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
}

#inventory {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid cyan;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}

#inventory h2 {
    font-size: 32px;
    color: cyan;
}

#store h2 {
    font-size: 32px;
    color: orange;
}

.storeButton {
    width: 250px;
    height: 50px;
    background-color: orange;
    color: blue;
    font-size: 12px;
    font-weight: bold;
    margin: 4px;
}

.inactive {
    background-color: #1d1c1c;
    color: #4a4747;
}

#danger {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 5px solid red;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
    margin-top: 15px;
}

#danger h2
{
    color: red;
    font-size: 32px;
}

.dangerButton {
    width: 450px;
    height: 50px;
    background-color: black;
    color: red;
    border-color: red;
    font-size: 16px;
    font-weight: bold;
}

#inventoryDisplay {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

@keyframes click-bounce {
    0% { transform: scale(1); }
    30% { transform: scale(0.85); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.bounce-animation {
    animation: click-bounce 0.15s ease-out;
}