/* === World Clock === */
.world-clock {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.world-clock:hover {
    background: rgba(0, 0, 0, 0.5);
}

.clock-zone {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.clock-bj {
    color: #ffb3c6;
}
.clock-bl {
    color: #b3c6ff;
}
.clock-date {
    font-size: 11px;
    opacity: 0.75;
    font-weight: 500;
}
.clock-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
}

/* Records page clock variant — slightly different background */
.world-clock-records {
    background: rgba(255, 255, 255, 0.15);
}
.world-clock-records:hover {
    background: rgba(255, 255, 255, 0.25);
}
