/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #2c2c2c;
    /* Slightly better dark tone */
    padding: 18px 12px;
    border-radius: 40px;
    /* Tighter capsule */
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
}

.social-sidebar a {
    width: 48px;
    height: 48px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.6rem;
    position: relative;
    /* Default background if class missing */
    background: #444;
}

.social-sidebar a:hover {
    transform: translateX(5px);
}

/* Brand Colors */
.social-sidebar a.facebook {
    background: #3b5998;
}

.social-sidebar a.facebook:hover {
    background: #4c70ba;
}

.social-sidebar a.twitter {
    background: #1da1f2;
}

.social-sidebar a.twitter:hover {
    background: #40bbf5;
}

.social-sidebar a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-sidebar a.instagram:hover {
    opacity: 0.9;
}

.social-sidebar a.linkedin {
    background: #0077b5;
}

.social-sidebar a.linkedin:hover {
    background: #008cc9;
}

/* Tooltips Removed as per request */
.social-sidebar a::after {
    display: none;
}

/* Keep visible on all devices */
@media (max-width: 768px) {
    .social-sidebar {
        left: 10px;
        /* Closer to edge on mobile */
        padding: 10px 8px;
        gap: 10px;
        border-radius: 30px;
    }

    .social-sidebar a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}