/* Social Links Fix - Prevent wrapping to new line */
.social-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.social-title {
    margin-right: 10px;
    flex-shrink: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    flex-shrink: 0;
}

.social-icon svg {
    flex-shrink: 0;
}

.social-links img {
    flex-shrink: 0;
}

/* Ensure parent containers don't wrap */
.header-top .col-auto {
    flex-shrink: 0;
}

/* Additional responsive fix for smaller screens */
@media (max-width: 1200px) {
    .social-title {
        font-size: 14px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .social-links img {
        height: 20px !important;
    }
}

@media (max-width: 992px) {
    .social-title {
        font-size: 12px;
        margin-right: 5px;
    }

    .social-icon {
        margin: 0 3px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .social-links img {
        height: 18px !important;
    }
}

