/* AI Post Summary Styles */

.ai-post-summary {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ai-post-summary h3 {
    color: #495057;
    margin: 0 0 15px 0;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid #007cba;
    padding-bottom: 8px;
}

.ai-summary-content {
    line-height: 1.6;
    color: #212529;
}

.ai-summary-content ul {
    margin: 0;
    padding-left: 20px;
}

.ai-summary-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Admin styles */
#ai-summary-container {
    margin: 10px 0;
}

.ai-summary-display {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.ai-summary-display h4 {
    margin: 0 0 10px 0;
    color: #23282d;
    font-size: 14px;
    font-weight: 600;
}

.ai-summary-content {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
}

#ai-summary-loading {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

#generate-ai-summary {
    width: 100%;
    margin-top: 10px;
}

#generate-ai-summary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive design */
@media (max-width: 768px) {
    .ai-post-summary {
        padding: 15px;
        margin: 15px 0;
    }
    
    .ai-post-summary h3 {
        font-size: 1.1rem;
    }
    
    .ai-summary-content {
        font-size: 14px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .ai-post-summary {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .ai-post-summary h3 {
        color: #e2e8f0;
        border-bottom-color: #63b3ed;
    }
    
    .ai-summary-content {
        color: #cbd5e0;
    }
    
    .ai-summary-content ul {
        color: #cbd5e0;
    }
} 