/* MIDEE Utilities - Detector de Inconsistencias */

.midee-detector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.midee-detector-column {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.midee-detector-column h4 {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.midee-detector-note {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1f2937;
    font-size: 0.95rem;
}

.midee-detector-output {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.midee-detector-alert-list {
    margin: 0;
    padding-left: 20px;
    color: #b91c1c;
}

.midee-detector-alert-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.midee-detector-ok {
    color: #166534;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .midee-detector-grid {
        grid-template-columns: 1fr;
    }
}
