/* Smart Comment Convertor Frontend Styles */

.scc-converted-content {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
}

/* FAQ Styles */
.scc-faq-container {
    max-width: 800px;
}

.scc-faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

.scc-faq-question {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #333;
}

.scc-faq-answer {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 10px 0;
    color: #555;
}

.scc-faq-meta {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Testimonials Styles */
.scc-testimonials-container {
    display: grid;
    gap: 20px;
}

.scc-testimonial-item {
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.scc-testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.scc-testimonial-rating {
    font-size: 18px;
    color: #ffa500;
    margin-bottom: 10px;
}

.scc-testimonial-author {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.scc-testimonial-date {
    font-size: 12px;
    color: #888;
}

/* Modern Style */
.scc-style-modern .scc-faq-item {
    background: #f8f9fa;
    border-left: 4px solid #007cba;
}

.scc-style-modern .scc-testimonial-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.scc-style-modern .scc-testimonial-content::before {
    content: '"';
    font-size: 24px;
    color: #007cba;
    position: absolute;
    top: 15px;
    left: 15px;
}

/* Classic Style */
.scc-style-classic .scc-faq-item {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.scc-style-classic .scc-testimonial-item {
    background: #fff;
    border: 2px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.scc-style-classic .scc-faq-question {
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* Minimal Style (Pro) */
.scc-style-minimal .scc-faq-item {
    background: transparent;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 15px 0;
}

.scc-style-minimal .scc-testimonial-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    box-shadow: none;
    padding: 20px 0;
}

/* Colorful Style (Pro) */
.scc-style-colorful .scc-faq-item:nth-child(odd) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.scc-style-colorful .scc-faq-item:nth-child(even) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.scc-style-colorful .scc-testimonial-item:nth-child(odd) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.scc-style-colorful .scc-testimonial-item:nth-child(even) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.scc-style-colorful .scc-faq-meta,
.scc-style-colorful .scc-testimonial-date {
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (min-width: 768px) {
    .scc-testimonials-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 767px) {
    .scc-converted-content {
        padding: 15px;
    }
    
    .scc-faq-item,
    .scc-testimonial-item {
        padding: 12px;
    }
    
    .scc-faq-question {
        font-size: 16px;
    }
    
    .scc-testimonial-content {
        font-size: 14px;
    }
}