/* ===== World Clock Bar ===== */
.world-clock-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 8px 0;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    overflow: hidden;
}

[data-theme="dark"] .world-clock-bar {
    background: linear-gradient(135deg, #0a0e1a 0%, #111827 100%);
    border-bottom-color: rgba(99, 102, 241, 0.15);
}

.world-clock-bar.hidden {
    display: none;
}

.world-clock-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 12px;
}

.world-clock-inner::-webkit-scrollbar {
    display: none;
}

.clock-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: default;
}

.clock-item:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
}

.clock-flag {
    font-size: 1rem;
    line-height: 1;
}

.clock-city {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clock-time {
    font-size: 0.78rem;
    font-weight: 700;
    color: #e2e8f0;
    font-variant-numeric: tabular-nums;
}

.clock-dismiss {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 1rem;
    line-height: 1;
    border-radius: 6px;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-left: auto;
}

.clock-dismiss:hover {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.clock-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    flex-shrink: 0;
    margin-right: 4px;
}

.clock-label-icon {
    font-size: 0.9rem;
}

.clock-label-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .world-clock-bar {
        padding: 6px 0;
    }
    .clock-item {
        padding: 4px 10px;
    }
    .clock-city {
        font-size: 0.65rem;
    }
    .clock-time {
        font-size: 0.7rem;
    }
    .clock-label {
        display: none;
    }
}
