/**
 * Demo Reset Timer
 *
 * @author    Demo Timer <demo@example.com>
 * @copyright 2026 Demo Timer
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

.demo-reset-timer {
    width: 100%;
    background-color: #2b303b;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
    box-sizing: border-box;
}

/* Para el Back Office, asegurar que la barra se vea bien arriba */
#main .demo-reset-timer {
    margin-bottom: 20px;
}

.demo-reset-timer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.demo-reset-timer-text {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-reset-countdown {
    display: inline-flex;
    gap: 5px;
    font-weight: bold;
    color: #ffd700; /* Dorado para resaltar */
}

.timer-part {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.demo-reset-timer-text, .demo-reset-countdown, .timer-part {
    line-height: 1;
}

.demo-resetting-message {
    font-weight: bold;
    color: #ff4c4c;
    animation: blink 1s linear infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}
