/* Catalist Health - Top Bar Styles */
.catalist-top-bar {
    background-color: #004a99; /* Professional Deep Blue */
    color: #ffffff;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    width: 100%;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.location-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
}

.phone-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-bar-left {
        display: none; /* Hides location on mobile to keep it clean */
    }
    .top-bar-content {
        justify-content: center;
    }
    .top-bar-right {
        gap: 20px;
    }
}