﻿

.chm-section-title {
    font-weight: 900;
    margin-bottom: 8px;
}

.chm-items {
    display: grid;
    gap: 10px;
}

.chm-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 12px;
    background: var(--panel, #fff);
}

    .chm-item img {
        width: 52px;
        height: 52px;
        border-radius: 10px;
        object-fit: cover;
    }

.chm-item-name {
    font-weight: 800;
}

.chm-item-meta {
    font-size: 12px;
    color: var(--muted, #6b7280);
    margin-top: 4px;
}

.chm-item-right {
    text-align: right;
    font-weight: 900;
}

.chm-totals {
    display: grid;
    gap: 6px;
}

.chm-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.chm-errors {
    font-size: 13px;
    line-height: 1.35;
    color: #b91c1c; /* rojo sobrio */

    background: #fee2e2;
    border: 1px solid #fecaca;
    padding: 10px 12px;
    border-radius: var(--radius);
}

    .chm-errors.ok {
        color: #065f46;
        background: #d1fae5;
        border-color: #a7f3d0;
    }

.chm-state {
    padding: 22px 18px;
    min-height: 220px;
    display: grid;
    place-items: center;
    text-align: center;
}



    .chm-state p {
        margin: 0;
        font-size: 13px;
        opacity: .85;
    }

    .chm-state h3 {
        font-weight: 900;
    }

    .chm-state i {
        font-size: 3rem;
    }



