/* WOM AI Profile Summary Styles */

.wom-ai-summary-block {
    margin-top: 20px;
    margin-bottom: 20px;
}

.wom-ai-summary-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.wom-ai-summary-title i {
    color: #f39c12;
    margin-right: 5px;
}

.wom-ai-summary-loading {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    text-align: center;
    color: #7f8c8d;
}

.wom-ai-summary-loading i {
    margin-right: 8px;
}

.wom-ai-summary-content {
    margin-top: 10px;
}

.wom-winners-summary-section {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #f39c12;
    margin-bottom: 15px;
}

.wom-about-summary-section {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #3498db;
}

.wom-summary-label {
    font-size: 13px;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wom-winners-summary-text,
.wom-about-summary-text {
    line-height: 1.6;
    color: #2c3e50;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wom-ai-summary-block {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .wom-winners-summary-section,
    .wom-about-summary-section {
        padding: 12px;
    }
    
    .wom-ai-summary-title {
        font-size: 15px;
    }
}

/* Animation for streaming text */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wom-ai-summary-content {
    animation: fadeIn 0.3s ease-in;
}

/* Loading spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wom-ai-summary-loading .fa-spinner {
    animation: spin 1s linear infinite;
}
