/* 🌑 Allgemeiner Stil */
body {
    color: #ffffff;
    background-color: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* 🎛 Container für alles */
.counter-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Abstand zwischen Elementen */
    padding: 40px;
    border-radius: 20px;
}

/* 🕒 Zähler-Anzeige */
#hour-display {
    font-size: 44px;
    margin-bottom: 20vh;
    border-radius: 5px;
    color: rgb(255, 255, 255);
}

/* 🔼 Up-Button */
.up-btn {
    color: #ffffff;
    background-color: transparent;
    width: 220px;
    height: 70px;
    border: 2px solid #ffffff;
    border-radius: 12px;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
}

.up-btn:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 15px #ffffff;
    transform: translateY(-3px);
}

/* 🔽 Down-Button */
.down-btn {
    color: #ff6666;
    background-color: transparent;
    width: 180px;
    height: 55px;
    border: 2px solid #ff6666;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.down-btn:hover {
    background-color: #ff6666;
    color: #1f1f1f;
    box-shadow: 0 0 15px #ff6666;
    transform: translateY(3px);
    cursor: pointer;

}

.cooldown {
    opacity: 0.5;
    pointer-events: none;
    transform: scale(0.98);
}
