      .share-bar {
            position: fixed;
            top: 45%;
            left: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 50;
        }

        .share-btn {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f1f5f9;
            color: #64748b;
            transition: .25s;
        }

        .share-btn:hover {
            color: white;
            transform: translateY(-3px);
        }

        .fb:hover {
            background: #1877f2;
        }

        .linkedin:hover {
            background: #0077b5;
        }

        .whatsapp:hover {
            background: #25D366;
        }

        .copy:hover {
            background: #ef4444;
        }

        @media(max-width:1024px) {

            .share-bar {
                bottom: 0;
                top: auto;
                left: 0;
                width: 100%;
                flex-direction: row;
                justify-content: center;
                background: white;
                padding: 10px;
                box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
            }

        }

        .scroll-container::-webkit-scrollbar {
            width: 4px;
            height: 4px
        }

        .scroll-container::-webkit-scrollbar-thumb {
            background: #e2e8f0;
            border-radius: 10px
        }

        .scroll-container::-webkit-scrollbar-thumb:hover {
            background: #ef4444
        }