.ai-share-buttons-container {
    margin: 2em 0;
    text-align: center;
}

.ai-share-buttons-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 1em;
}

/* Text size variations */
.ai-share-buttons-text-small {
    font-size: 1em !important;
}

.ai-share-buttons-text-medium {
    font-size: 1.2em !important;
}

.ai-share-buttons-text-large {
    font-size: 1.5em !important;
}

.ai-share-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    flex-wrap: wrap;
}

.ai-share-button {
    display: inline-block;
    transition: transform 0.2s;
}

.ai-share-button:hover {
    transform: scale(1.1);
}

.ai-share-button-icon {
    width: 48px;
    height: 48px;
    display: block;
}

/* Button size variations */
.ai-share-buttons-small .ai-share-button-icon {
    width: 32px;
    height: 32px;
}

.ai-share-buttons-medium .ai-share-button-icon {
    width: 48px;
    height: 48px;
}

.ai-share-buttons-large .ai-share-button-icon {
    width: 64px;
    height: 64px;
}

/* Adjust gaps for different sizes */
.ai-share-buttons-small .ai-share-buttons {
    gap: 1em;
}

.ai-share-buttons-medium .ai-share-buttons {
    gap: 1.5em;
}

.ai-share-buttons-large .ai-share-buttons {
    gap: 2em;
}

/* Responsive styles */
@media (max-width: 768px) {
    .ai-share-buttons-small .ai-share-button-icon {
        width: 28px;
        height: 28px;
    }
    
    .ai-share-buttons-medium .ai-share-button-icon {
        width: 40px;
        height: 40px;
    }
    
    .ai-share-buttons-large .ai-share-button-icon {
        width: 52px;
        height: 52px;
    }
    
    .ai-share-buttons {
        gap: 1em;
    }
    
    /* Responsive text sizes for tablets */
    .ai-share-buttons-text-small {
        font-size: 0.9em !important;
    }
    
    .ai-share-buttons-text-medium {
        font-size: 1.1em !important;
    }
    
    .ai-share-buttons-text-large {
        font-size: 1.3em !important;
    }
}

@media (max-width: 480px) {
    .ai-share-buttons-small .ai-share-button-icon {
        width: 24px;
        height: 24px;
    }
    
    .ai-share-buttons-medium .ai-share-button-icon {
        width: 32px;
        height: 32px;
    }
    
    .ai-share-buttons-large .ai-share-button-icon {
        width: 40px;
        height: 40px;
    }
    
    .ai-share-buttons {
        gap: 0.8em;
    }
    
    /* Responsive text sizes for mobile */
    .ai-share-buttons-text-small {
        font-size: 0.8em !important;
    }
    
    .ai-share-buttons-text-medium {
        font-size: 1em !important;
    }
    
    .ai-share-buttons-text-large {
        font-size: 1.2em !important;
    }
}
