/* Frontend Styles */
.ai-share-buttons-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-top: 3px solid #007cba;
}

.ai-share-buttons-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ai-share-buttons-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.ai-share-buttons-header p {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.ai-share-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ai-share-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    color: white !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ai-share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: white !important;
}

.ai-share-button:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Minimal Style */
.ai-share-button-minimal {
    padding: 0.75rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
}

.ai-share-button-minimal:hover {
    transform: scale(1.1);
}

/* Compact Style */
.ai-share-button-compact {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}

.ai-share-button-compact .ai-share-button-text {
    font-size: 0.875rem;
}

/* Full Style */
.ai-share-button-full {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    min-width: 140px;
}

.ai-share-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ai-share-button-name {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.ai-share-button-action {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1;
}

.ai-share-button-external {
    margin-left: auto;
    opacity: 0.75;
}

.ai-share-buttons-footer {
    text-align: center;
    margin-top: 1rem;
}

.ai-share-buttons-footer p {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .ai-share-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .ai-share-button-full {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .ai-share-button-compact {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .ai-share-buttons-container {
        background: #1e293b;
        border-top-color: #3b82f6;
    }
    
    .ai-share-buttons-header h3 {
        color: #f1f5f9;
    }
    
    .ai-share-buttons-header p,
    .ai-share-buttons-footer p {
        color: #94a3b8;
    }
}