
/* Sticky Sidebar Styles */
.social-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    padding: 15px 10px;
}

.social-sidebar-right {
    right: 0;
    border-radius: 20px 0 0 20px;
}

.social-sidebar-left {
    left: 0;
    border-radius: 0 20px 20px 0;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

/* Platform-spezifische Farben */
.social-btn-facebook { background: #ff3c00; }
.social-btn-twitter { background: #ff3c00; }
.social-btn-instagram { background: #ff3c00 }
.social-btn-linkedin { background: #ff3c00; }
.social-btn-youtube { background: #ff3c00; }
.social-btn-github { background: #ff3c00; }
.social-btn-tiktok { background: #ff3c00; }
.social-btn-pinterest { background: #ff3c00; }
.social-btn-whatsapp { background: #ff3c00; }
.social-btn-telegram { background: #ff3c00; }

/* Inline Styles */
.social-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.social-btn-inline {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-btn-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-btn-inline svg {
    width: 22px;
    height: 22px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-sidebar {
        padding: 10px 5px;
        gap: 8px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-btn svg {
        width: 20px;
        height: 20px;
    }
}