﻿.social-sidebar {
    position: fixed;
    top: 35%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

    .social-sidebar a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: #fff;
        border-radius: 8px 0 0 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        font-size: 22px;
        color: #fff;
        transition: all 0.3s ease;
    }

        /* Индивидуальные цвета */
        .social-sidebar a.facebook {
            background: #3b5998;
        }

        .social-sidebar a.telegram {
            background: #0088cc;
        }

        .social-sidebar a.youtube {
            background: #ff0000;
        }

        .social-sidebar a.instagram {
            background: linear-gradient(45deg,#fd1d1d,#e1306c,#c13584,#833ab4,#5851db);
        }

        .social-sidebar a.whatsapp {
            background: #25d366;
        }

        .social-sidebar a:hover {
            transform: translateX(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
