/* ============================================
   EPT VALIDATOR - ANALYSIS BOXES
   Images, Links & SEO Meta Tags Analysis Styles
   Version: 2.8.0
   ============================================ */

/* ============================================
   IMAGES ANALYSIS BOX
   ============================================ */

.ept-images-analysis {
    background: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ept-analysis-header {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ept-analysis-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}

.ept-stat-item {
    flex: 1;
    text-align: center;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ept-stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    min-width: 30px;
    text-align: center;
}

.ept-stat-number.ept-stat-good {
    color: #059669;
}

.ept-stat-number.ept-stat-bad {
    color: #dc2626;
}

.ept-stat-number.ept-stat-neutral {
    color: #d97706;
}

.ept-stat-label {
    display: block;
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ept-analysis-suggestions {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    padding: 12px;
}

.ept-analysis-suggestion {
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
    line-height: 1.5;
}

.ept-analysis-suggestion:last-child {
    margin-bottom: 0;
}

/* ============================================
   LINKS ANALYSIS BOX
   ============================================ */

.ept-links-analysis {
    background: #dbeafe;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SEO META TAGS ANALYSIS BOX (UNIFIED)
   Title + Description + Slug in one box
   ============================================ */

.ept-seo-meta-analysis {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ept-meta-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
}

.ept-meta-section:last-child {
    margin-bottom: 0;
}

.ept-meta-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ept-stat-icon {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
    min-width: 30px;
    text-align: center;
}

/* Responsive: Stack stats vertically on mobile */
@media (max-width: 768px) {
    .ept-analysis-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .ept-stat-item {
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .ept-stat-item:last-child {
        border-bottom: none;
    }
    
    .ept-stat-number {
        font-size: 16px;
    }
    
    .ept-stat-icon {
        font-size: 18px;
    }
}
