/* MIDEE Utilities - Validador de orden de magnitud */

.midee-validator-output {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.midee-validator-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.midee-validator-row span {
    color: #495057;
    font-weight: 500;
}

.midee-validator-row strong {
    color: #212529;
}

.midee-validator-alert {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 600;
    color: #212529;
    background: #e2e3e5;
}

.midee-validator-alert-ok {
    background: #d1e7dd;
    color: #0f5132;
}

.midee-validator-alert-danger {
    background: #f8d7da;
    color: #842029;
}

@media (max-width: 768px) {
    .midee-validator-row {
        flex-direction: column;
        align-items: flex-start;
    }
}