/* Countdown Timer Styles */
.country-timer {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    pointer-events: none;
    /* Let clicks pass through to the map */
    white-space: nowrap;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.country-timer .timer-country {
    font-size: 10px;
    font-weight: 900;
    opacity: 0.9;
    text-transform: uppercase;
    color: #ffd700; /* Gold color to assert dominance */
    line-height: 1;
    margin-bottom: 1px;
}

.country-timer .timer-days {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
}

.country-timer .timer-time {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
}

.custom-timer-icon {
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}