.social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.social-share-title {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.social-share-buttons.align-left .social-share-title {
    text-align: left;
}

.social-share-buttons.align-center .social-share-title {
    text-align: center;
}

.social-share-buttons.align-right .social-share-title {
    text-align: right;
}

.social-share-buttons-container {
    display: flex;
    gap: 0.5rem;
}

.social-share-buttons.align-left .social-share-buttons-container {
    justify-content: flex-start;
}

.social-share-buttons.align-center .social-share-buttons-container {
    justify-content: center;
}

.social-share-buttons.align-right .social-share-buttons-container {
    justify-content: flex-end;
}

.social-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
}

/* Size variations */
.social-share-buttons.size-small .social-share-button {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.social-share-buttons.size-medium .social-share-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.social-share-buttons.size-large .social-share-button {
    width: 48px;
    height: 48px;
    font-size: 24px;
}

/* Style variations */
.social-share-buttons.style-icons .social-share-button {
    background: transparent;
    color: #666;
}

.social-share-buttons.style-buttons .social-share-button {
    background: #f8f9fa;
    color: #666;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-share-buttons.style-minimal .social-share-button {
    background: transparent;
    color: #666;
    border: 1px solid #dee2e6;
}

/* Network colors and icons */
.social-share-button.twitter {
    color: #1DA1F2;
}

.social-share-button.facebook {
    color: #4267B2;
}

.social-share-button.whatsapp {
    color: #25D366;
}

.social-share-button.telegram {
    color: #0088cc;
}

.social-share-button i {
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
}

/* Button labels */
.social-share-button .button-label {
    margin-left: 0.5rem;
    font-size: 0.875rem;
}

.social-share-buttons.size-small .button-label {
    font-size: 0.75rem;
}

.social-share-buttons.size-large .button-label {
    font-size: 1rem;
}

/* Hover effects */
.social-share-buttons.style-icons .social-share-button:hover {
    transform: translateY(-2px);
}

.social-share-buttons.style-buttons .social-share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.social-share-buttons.style-minimal .social-share-button:hover {
    background: #f8f9fa;
}

.social-share-button.twitter:hover {
    color: #1a8cd8;
    background-color: rgba(29, 161, 242, 0.1);
}

.social-share-button.facebook:hover {
    color: #365899;
    background-color: rgba(66, 103, 178, 0.1);
}

.social-share-button.whatsapp:hover {
    color: #1fa855;
    background-color: rgba(37, 211, 102, 0.1);
}

.social-share-button.telegram:hover {
    color: #0077b3;
    background-color: rgba(0, 136, 204, 0.1);
}

/* Preview in editor */
.social-share-buttons-preview {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px dashed #dee2e6;
} 