/* Premium Header Location & User Greeting Bar */
.header-location-bar {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 0.65rem 0;
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    display: block;
    width: 100%;
}

.location-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

/* User Avatar & Greeting Section */
.tb-header-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tb-header-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    border: 2px solid #ffffff;
}

.tb-header-greeting-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.tb-header-greeting-name {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tb-header-greeting-sub {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.1rem;
}

/* Location Pill Selector Button */
.tb-header-location-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.45rem 0.95rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.tb-header-location-pill:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08);
}

.tb-loc-pill-pin {
    color: #2563eb;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tb-loc-pill-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tb-loc-pill-chevron {
    font-size: 0.68rem;
    color: #475569;
    margin-left: 0.15rem;
    transition: transform 0.2s ease;
}

.tb-header-location-pill:hover .tb-loc-pill-chevron {
    transform: rotate(180deg);
    color: #2563eb;
}

@media (max-width: 576px) {
    .header-location-bar {
        padding: 0.5rem 0;
    }
    .tb-header-avatar {
        width: 38px;
        height: 38px;
    }
    .tb-header-greeting-name {
        font-size: 0.88rem;
    }
    .tb-header-greeting-sub {
        font-size: 0.72rem;
    }
    .tb-header-location-pill {
        padding: 0.35rem 0.75rem;
    }
    .tb-loc-pill-text {
        font-size: 0.76rem;
        max-width: 130px;
    }
}
