/* ===== LIVE DATE TIME BAR ===== */
#live-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    background: #094a19;/* #0d6efd;*/
    color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    white-space: nowrap;
}

/* ===== EVENT CARDS ===== */
.event-card {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.event-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.event-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

/* ===== COUNTDOWN ===== */
.countdown {
    display: flex;
    gap: 6px;
}

.time-box {
    background: #f1f1f1;
    padding: 6px;
    border-radius: 4px;
    text-align: center;
    min-width: 45px;
}

.time-box span {
    display: block;
    font-weight: bold;
    font-size: 14px;
}

.time-box small {
    font-size: 10px;
    color: #555;
}