/* ============================================================
   LIBRO DE RECLAMACIONES - CSS PROPIO (sin Tailwind)
   Hospital Regional Eleazar Guzmán Barrón
   ============================================================ */

/* --- Variables locales (heredan del sistema) --- */
:root {
    --lr-primary: #1a5276;
    --lr-primary-light: #0096cb;
    --lr-primary-dark: #11364f;
    --lr-radius: 20px;
    --lr-radius-sm: 12px;
    --lr-shadow: 0 10px 30px rgba(26,82,118,0.10);
    --lr-border: #e2e8f0;
    --lr-bg: #f8fafc;
    --lr-text: #1e293b;
    --lr-muted: #64748b;
}

/* ---- BANNER SUPERIOR ---- */
.lr-banner {
    background: linear-gradient(135deg, var(--lr-primary) 0%, #2980b9 50%, var(--lr-primary-dark) 100%);
    border-radius: var(--lr-radius);
    padding: 30px 30px;
    color: #fff;
    box-shadow: var(--lr-shadow);
    overflow: hidden;
    position: relative;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.lr-banner::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.lr-banner-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #bfdbfe;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}
.lr-banner h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0.75rem 0 0.5rem;
    line-height: 1.2;
}
.lr-banner p {
    font-size: 0.85rem;
    color: #bfdbfe;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}
.lr-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}
.lr-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--lr-radius-sm);
    cursor: pointer;
    transition: background 0.2s;
}
.lr-btn-outline-white:hover { background: rgba(255,255,255,0.22); }
.lr-banner-check {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #bfdbfe;
}
.lr-banner-logo-box {
    background: #fff;
    border-radius: var(--lr-radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
    flex-shrink: 0;
}
.lr-banner-logo-box img { height: 64px; object-fit: contain; margin-bottom: 0.4rem; }
.lr-banner-logo-box span { font-size: 0.65rem; font-weight: 700; color: #1e3a5f; text-transform: uppercase; }

/* ---- TABS ---- */
.lr-tabs {
    display: flex;
    gap: 0.4rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: var(--lr-radius);
    padding: 0.35rem;
    max-width: 400px;
    margin: 0 auto 2rem;
}
.lr-tab-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: calc(var(--lr-radius) - 4px);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: var(--lr-muted);
}
.lr-tab-btn.active {
    background: var(--lr-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(26,82,118,0.25);
}
.lr-tab-btn:not(.active):hover { background: #fff; }

/* ---- CONCEPTOS (Reclamo / Queja) ---- */
.lr-concepts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: #f0f7ff;
    border: 1px solid #dbeafe;
    border-radius: var(--lr-radius-sm);
    padding: 1.25rem;
    margin-bottom: 2rem;
}
@media(max-width:640px){ .lr-concepts { grid-template-columns: 1fr; } }
.lr-concept-item { display: flex; gap: 0.75rem; }
.lr-concept-item .material-icons-round { color: var(--lr-primary); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.lr-concept-item h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--lr-text); margin: 0 0 0.25rem; }
.lr-concept-item p { font-size: 0.78rem; color: var(--lr-muted); line-height: 1.5; margin: 0; max-width: none; }

/* ---- ALERTA ERROR ---- */
.lr-alert-error {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #b91c1c;
    border-radius: var(--lr-radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ---- STEP INDICATORS ---- */
.lr-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}
.lr-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s;
}
.lr-step-item.inactive { opacity: 0.4; filter: grayscale(1); }
.lr-step-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.875rem;
    background: var(--lr-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,86,172,0.3);
    transition: all 0.3s;
}
.lr-step-circle.pending {
    background: #e2e8f0;
    color: #64748b;
    box-shadow: none;
}
.lr-step-circle.done { background: #22c55e; }
.lr-step-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--lr-muted);
    margin-top: 0.4rem;
    text-align: center;
}
.lr-step-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 0.5rem;
    margin-bottom: 1.25rem;
    position: relative;
}
.lr-step-line-fill {
    height: 100%;
    background: var(--lr-primary);
    transition: width 0.4s ease;
    width: 0%;
}

/* ---- CARD / FORM CONTAINER ---- */
.lr-card {
    background: #fff;
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius);
    padding: 2rem;
    box-shadow: var(--lr-shadow);
}
.lr-card-header {
    border-bottom: 1px solid var(--lr-border);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}
.lr-card-header h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lr-text);
    margin: 0 0 0.25rem;
}
.lr-card-header p { font-size: 0.78rem; color: var(--lr-muted); margin: 0; max-width: none; }

/* ---- FORM GRID & FIELDS ---- */
.lr-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.lr-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.lr-col-2 { grid-column: 1 / -1; }
@media(max-width:640px){
    .lr-grid-2, .lr-grid-3 { grid-template-columns: 1fr; }
    .lr-col-2 { grid-column: auto; }
}

.lr-field { display: flex; flex-direction: column; }
.lr-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lr-muted);
    margin-bottom: 0.4rem;
}
.lr-input, .lr-select, .lr-textarea {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--lr-radius-sm);
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--lr-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.lr-input:focus, .lr-select:focus, .lr-textarea:focus {
    border-color: var(--lr-primary);
    box-shadow: 0 0 0 3px rgba(0,86,172,0.12);
}
.lr-input.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.lr-textarea { resize: vertical; min-height: 100px; }

/* ---- CHECKBOX ROW ---- */
.lr-checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-radius: var(--lr-radius-sm);
    grid-column: 1 / -1;
}
.lr-checkbox-row input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--lr-primary); cursor: pointer; flex-shrink: 0; }
.lr-checkbox-row label { font-size: 0.8rem; font-weight: 600; color: #475569; cursor: pointer; line-height: 1.4; }

/* ---- REP FIELDS ---- */
.lr-rep-fields {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: var(--lr-radius-sm);
    padding: 1.25rem;
    margin-top: 0.5rem;
    grid-column: 1 / -1;
}
.lr-rep-fields.hidden { display: none; }
.lr-rep-header { border-bottom: 1px solid #e2e8f0; padding-bottom: 0.5rem; margin-bottom: 1rem; }
.lr-rep-header h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #475569; margin: 0 0 0.2rem; }
.lr-rep-header p { font-size: 0.7rem; color: var(--lr-muted); margin: 0; max-width: none; }

/* ---- TIPO RADIO BUTTONS ---- */
.lr-radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.lr-radio-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 180px;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--lr-radius-sm);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.lr-radio-card:hover { background: rgba(0,86,172,0.04); }
.lr-radio-card input { accent-color: var(--lr-primary); }
.lr-radio-card-title { display: block; font-size: 0.8rem; font-weight: 700; color: var(--lr-text); }
.lr-radio-card-desc { display: block; font-size: 0.7rem; color: var(--lr-muted); line-height: 1.3; }

/* ---- CONSENT BOX ---- */
.lr-consent-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: var(--lr-radius-sm);
    padding: 0.9rem 1rem;
}
.lr-consent-box input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--lr-primary); flex-shrink: 0; margin-top: 2px; }
.lr-consent-box label { font-size: 0.75rem; color: #475569; line-height: 1.6; cursor: pointer; }

/* ---- FORM ACTIONS ---- */
.lr-actions { display: flex; justify-content: flex-end; padding-top: 0.75rem; gap: 0.75rem; }
.lr-actions-between { display: flex; justify-content: space-between; padding-top: 0.75rem; gap: 0.75rem; }

/* ---- BUTTONS ---- */
.lr-btn-primary {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--lr-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: var(--lr-radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26,82,118,0.25);
    transition: background 0.2s, box-shadow 0.2s;
}
.lr-btn-primary:hover { background: var(--lr-primary-light); box-shadow: 0 6px 18px rgba(26,82,118,0.35); }
.lr-btn-primary.gradient { background: linear-gradient(135deg, var(--lr-primary), var(--lr-primary-light)); }

.lr-btn-secondary {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: var(--lr-radius-sm);
    cursor: pointer;
    transition: background 0.2s;
}
.lr-btn-secondary:hover { background: #e2e8f0; }

/* ---- SECCIÓN SECTION WRAPPER ---- */
.lr-section { margin-bottom: 1.5rem; }
.lr-section.hidden { display: none; }

/* ---- SUCCESS CARD ---- */
.lr-success-card {
    background: #fff;
    border: 1px solid var(--lr-border);
    border-radius: var(--lr-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--lr-shadow);
    max-width: 600px;
    margin: 0 auto;
}
.lr-success-icon {
    width: 64px; height: 64px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    color: #16a34a;
}
.lr-success-badge {
    display: inline-block;
    background: #f0fdf4;
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.lr-success-card h2 { font-size: 1.4rem; font-weight: 800; color: var(--lr-text); margin: 0 0 0.5rem; }
.lr-success-card > p { font-size: 0.85rem; color: var(--lr-muted); margin: 0 auto 1.5rem; }

.lr-receipt {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--lr-radius-sm);
    padding: 1.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.lr-receipt-watermark {
    position: absolute; right: 12px; top: 12px;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
    color: #e2e8f0; text-transform: uppercase;
    transform: rotate(12deg); user-select: none;
}
.lr-receipt-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px dashed #cbd5e1; padding-bottom: 0.75rem; margin-bottom: 1rem;
}
.lr-receipt-code-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--lr-muted); }
.lr-receipt-code { font-family: monospace; font-size: 1.1rem; font-weight: 800; color: var(--lr-primary); }
.lr-receipt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; font-size: 0.78rem; }
.lr-receipt-field span:first-child { display: block; color: var(--lr-muted); font-weight: 600; font-size: 0.68rem; text-transform: uppercase; margin-bottom: 2px; }
.lr-receipt-field span:last-child { font-weight: 500; color: var(--lr-text); }
.lr-receipt-field.full { grid-column: 1 / -1; }
.lr-receipt-footer {
    border-top: 1px dashed #cbd5e1; padding-top: 0.75rem; margin-top: 0.75rem;
    font-size: 0.72rem; color: var(--lr-muted); text-align: center; line-height: 1.5;
}

/* ---- SEARCH RESULT ---- */
.lr-result-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 0.75rem;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: var(--lr-radius-sm); padding: 1rem 1.25rem; margin-bottom: 1.5rem;
}
.lr-result-code-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--lr-muted); }
.lr-result-code { font-family: monospace; font-size: 1rem; font-weight: 800; color: var(--lr-text); }
.lr-status-badge {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; padding: 0.3rem 0.85rem; border-radius: 999px;
}
.lr-status-pending { background: #fef9c3; color: #92400e; }
.lr-status-process { background: #dbeafe; color: #1e40af; }
.lr-status-done    { background: #dcfce7; color: #15803d; }

.lr-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; font-size: 0.85rem; }
@media(max-width:640px){ .lr-result-grid { grid-template-columns: 1fr; } }
.lr-result-section h5 { font-size: 0.85rem; font-weight: 700; color: var(--lr-text); border-bottom: 1px solid #e2e8f0; padding-bottom: 0.35rem; margin-bottom: 0.75rem; }
.lr-result-section p { color: #475569; margin: 0 0 0.4rem; max-width: none; }
.lr-result-section p span { color: var(--lr-muted); }

.lr-result-desc {
    background: #f8fafc; border-radius: var(--lr-radius-sm);
    padding: 1rem; font-size: 0.78rem; max-height: 160px; overflow-y: auto;
    color: #475569;
}
.lr-result-full { grid-column: 1 / -1; }

.lr-response-box {
    background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: var(--lr-radius-sm); padding: 1.25rem;
}
.lr-response-box h5 { color: #166534; font-size: 0.875rem; font-weight: 700; display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.5rem; }
.lr-response-box p { font-size: 0.8rem; color: #374151; line-height: 1.6; max-width: none; margin: 0; }
.lr-response-box .lr-response-date { font-size: 0.7rem; color: var(--lr-muted); border-top: 1px solid #dcfce7; margin-top: 0.5rem; padding-top: 0.5rem; }

.lr-pending-box {
    background: #fffbeb; border: 1px solid #fde68a;
    border-radius: var(--lr-radius-sm); padding: 1.25rem;
}
.lr-pending-box h5 { color: #92400e; font-size: 0.875rem; font-weight: 700; display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.5rem; }
.lr-pending-box p { font-size: 0.8rem; color: #78350f; line-height: 1.6; max-width: none; margin: 0; }

/* ---- MODAL ---- */
.lr-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.lr-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(15,23,42,0.55);
    backdrop-filter: blur(4px);
}
.lr-modal-box {
    position: relative; z-index: 10;
    background: #fff; border-radius: var(--lr-radius);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    max-width: 700px; width: 100%; overflow: hidden;
}
.lr-modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.lr-modal-header-left { display: flex; align-items: center; gap: 0.5rem; }
.lr-modal-header-left h3 { font-size: 1rem; font-weight: 700; color: var(--lr-text); margin: 0; }
.lr-modal-close {
    background: none; border: none; color: var(--lr-muted);
    cursor: pointer; font-size: 1.25rem; line-height: 1;
    transition: color 0.2s;
}
.lr-modal-close:hover { color: var(--lr-text); }
.lr-modal-body { background: #f8fafc; }
.lr-modal-body img { width: 100%; max-height: 480px; object-fit: contain; display: block; }
.lr-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.78rem; color: var(--lr-muted); text-align: center;
}

/* ---- SEARCH FORM ROW ---- */
.lr-search-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1rem; align-items: flex-end; }
@media(max-width:640px){ .lr-search-row { grid-template-columns: 1fr; } }

/* ---- SUCCESS ACTIONS ---- */
.lr-success-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.lr-btn-print {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--lr-primary); color: #fff;
    font-size: 0.875rem; font-weight: 600;
    padding: 0.65rem 1.5rem;
    border: none; border-radius: var(--lr-radius-sm);
    cursor: pointer; transition: background 0.2s;
}
.lr-btn-print:hover { background: var(--lr-primary-light); }
.lr-btn-again {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #f1f5f9; color: #475569;
    font-size: 0.875rem; font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: var(--lr-radius-sm);
    text-decoration: none;
    transition: background 0.2s;
}
.lr-btn-again:hover { background: #e2e8f0; }

/* ---- STEP TRANSITION ---- */
.step-transition { transition: all 0.3s ease-in-out; }

/* ---- BANNER INDECOPI (Ley 29571) ---- */
.lr-indecopi-banner {
    margin-top: 2.5rem;
    border: 2px solid #cce0f5;
    border-radius: var(--lr-radius-sm);
    background: #eef6ff;
    overflow: hidden;
}
.lr-indecopi-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 1.5rem;
}
.lr-indecopi-logo { flex-shrink: 0; }
.lr-indecopi-logo img { height: 52px; width: auto; display: block; }
.lr-indecopi-text { flex: 1; }
.lr-indecopi-title {
    font-size: .88rem;
    color: #1e3a5f;
    margin: 0 0 4px;
    line-height: 1.4;
}
.lr-indecopi-sub {
    font-size: .78rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}
.lr-indecopi-link {
    color: #0056ac;
    font-weight: 600;
    text-decoration: underline;
}
.lr-indecopi-link:hover { color: #002d56; }
@media (max-width: 600px) {
    .lr-indecopi-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

/* ===== ESTADO VACÍO PREMIUM (consulta sin resultados) ===== */
.lr-empty {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #e3edf7;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0, 68, 129, .06);
    animation: lrFadeUp .4s ease-out;
}
@keyframes lrFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.lr-empty-icon {
    width: 76px; height: 76px;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fef2f2;
    box-shadow: 0 0 0 8px rgba(220, 38, 38, .08);
}
.lr-empty-icon .material-icons-round { font-size: 2.4rem; color: #dc2626; }
.lr-empty h4 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 800; color: #991b1b; }
.lr-empty > p { margin: 0 auto 18px; max-width: 460px; color: #5b6b7d; font-size: .9rem; line-height: 1.55; }
.lr-empty-tips {
    list-style: none; margin: 0 auto; padding: 0;
    max-width: 460px; text-align: left; display: grid; gap: 10px;
}
.lr-empty-tips li {
    display: flex; align-items: flex-start; gap: 10px;
    background: #fff; border: 1px solid #eef2f7; border-radius: 10px;
    padding: 12px 14px; font-size: .85rem; color: #44515f; line-height: 1.45;
}
.lr-empty-tips .material-icons-round { font-size: 1.2rem; color: #2980b9; flex-shrink: 0; }
