/* Header Social Icons Styling */
.header-social-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
}

.header-social-icons .social-btn {
    width: 32px;
    height: 32px;
}

.header-social-icons .social-btn svg {
    width: 16px;
    height: 16px;
}

.header-social-icons .social-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header-social-icons {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}