/* Location Header Styles */
.location-selector {
    display: flex;
    align-items: center;
    margin-right: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-selector:hover {
    transform: translateY(-2px);
}

.location-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.location-selector:hover .location-icon {
    transform: scale(1.1);
}

.location-text {
    display: flex;
    flex-direction: column;
}

.location-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
}

.selected-city-display {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-dropdown-icon {
    color: var(--secondary-color);
    font-size: 0.7rem;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.location-selector:hover .location-dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile Styles */
.mobile-location-selector {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
}

.mobile-location-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 10px;
}

.mobile-location-text {
    flex: 1;
}

.mobile-location-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.mobile-selected-city {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .location-selector {
        display: none;
    }
}

@media (min-width: 992px) {
    .mobile-location-selector {
        display: none;
    }
}
