.share-sidebar {
    position: fixed;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    border-radius: 0px 4px 4px 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.5rem;
}

.share-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #34aadc);
}

.vk-btn {
    background: linear-gradient(135deg, #4c75a3, #5b88bd);
}

.ok-btn {
    background: linear-gradient(135deg, #f58220, #ffa500);
}

.yandex-btn {
    background: linear-gradient(135deg, #ffcc00, #ffdb4d);
    color: #000 !important;
}

.copy-btn {
    background: linear-gradient(135deg, #6c757d, #8e9ba8);
}

.toast-custom {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .share-sidebar {
        left: 10px;
        padding: 8px;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}