/* ═══════════════════════════════════════════════
   Nutri24h — Estilos Combinados (Painel & Laudo InBody)
   Estilo Premium Glassmorphism no Dashboard +
   Layout Clínico Fiel ao PDF InBody no Laudo
   ═══════════════════════════════════════════════ */

:root {
  --bg-color: #0b0f19;
  --panel-bg: rgba(22, 29, 49, 0.75);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --accent-color: #6366f1; /* Indigo */
  --accent-glow: rgba(99, 102, 241, 0.4);
  --success: #10b981; /* Emerald */
  --success-bg: rgba(16, 185, 129, 0.15);
  --danger: #ef4444; /* Rose */
  --danger-bg: rgba(239, 68, 68, 0.15);
  --warning: #f59e0b; /* Amber */
  --warning-bg: rgba(245, 158, 11, 0.15);
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  position: relative;
}

/* Glowing Decorative Background Orbs */
.glass-bg {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(11, 15, 25, 1) 0%, rgba(11, 15, 25, 0.95) 100%);
}

.app-container {
  width: 100%; max-width: 1100px; padding: 1.5rem; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.5rem;
}

/* ─── MODALS ─── */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
}
.modal-content {
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 16px; padding: 2rem; width: 90%; max-width: 400px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  animation: slideUp 0.3s ease-out;
}
.modal-content h2 { margin-bottom: 0.5rem; font-weight: 700; font-size: 1.5rem; }

/* ─── LOGIN PANEL ─── */
.login-container {
  width: 100%; max-width: 400px; margin: 8rem auto 0;
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 20px; padding: 2.5rem; box-shadow: 0 15px 50px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}
.login-header { text-align: center; margin-bottom: 2rem; }
.login-header .logo-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.login-header h1 { font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 0.25rem; }
.login-header h1 span { color: var(--accent-color); }
.login-header p { color: var(--text-secondary); font-size: 0.9rem; }
.login-form { display: flex; flex-direction: column; gap: 1.25rem; }
.btn-block { width: 100%; padding: 1rem; font-size: 1.1rem; }

/* ─── HEADER ─── */
.app-header {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 16px; padding: 1rem 1.5rem;
  backdrop-filter: blur(12px); margin-bottom: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
.logo-icon {
  font-size: 1.8rem; background: linear-gradient(135deg, var(--accent-color), #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 2px 8px var(--accent-glow));
}
.logo-text { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.5px; color: #fff; }
.logo-text span { color: var(--accent-color); font-weight: 800; }

.user-menu { display: flex; align-items: center; gap: 1rem; position: relative; }
.user-info { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; padding: 0.5rem; border-radius: 8px; transition: var(--transition-smooth); }
.user-info:hover { background: rgba(255,255,255,0.05); }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-color); display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 1.1rem; }
.user-name { font-weight: 600; }
.dropdown-menu {
  position: absolute; top: 110%; right: 0; background: #1e293b; border: 1px solid var(--panel-border);
  border-radius: 12px; padding: 0.5rem; display: flex; flex-direction: column; gap: 0.25rem; min-width: 150px; z-index: 100;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.dropdown-menu button {
  background: transparent; border: none; color: var(--text-primary); text-align: left; padding: 0.75rem 1rem;
  border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: var(--transition-smooth); font-family: var(--font-family);
}
.dropdown-menu button:hover { background: rgba(255,255,255,0.1); }

/* ─── DASHBOARD STATS ─── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.stat-card {
  background: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: 16px;
  padding: 1.5rem; display: flex; align-items: center; gap: 1rem;
}
.stat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(99, 102, 241, 0.15); color: var(--accent-color); font-size: 1.5rem; display: flex; justify-content: center; align-items: center; }
.stat-data { display: flex; flex-direction: column; }
.stat-value { font-size: 1.8rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── LAYOUTS ─── */
.split-layout { display: flex; gap: 1.5rem; flex-wrap: wrap; }
@media(max-width: 768px){ .split-layout { flex-direction: column; } }

.card { background: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: 16px; padding: 1.5rem; }
.card h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.card-header h2 { margin: 0; font-size: 1.25rem; }

.search-card, .form-card, .student-profile-card, .history-card {
  background: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: 16px; padding: 2rem;
}

/* ─── FORMS & INPUTS ─── */
.search-form { display: flex; gap: 1rem; }
.input-group { position: relative; flex: 1; display: flex; align-items: center; }
.input-icon { position: absolute; left: 1rem; color: var(--text-secondary); }
.input-group input { padding-left: 2.5rem !important; }

input, select, textarea {
  width: 100%; background: rgba(15, 23, 42, 0.6); border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; padding: 0.85rem 1rem; color: var(--text-primary); font-family: var(--font-family); font-size: 1rem; outline: none; transition: var(--transition-smooth);
}
input:focus, select:focus, textarea:focus { border-color: var(--accent-color); background: rgba(15, 23, 42, 0.8); }
select option { background: var(--bg-color); color: var(--text-primary); }
textarea { resize: vertical; }

.readonly-input { background: rgba(255,255,255,0.05) !important; color: var(--text-secondary) !important; cursor: not-allowed; border-style: dashed !important; }

.form-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.form-grid-layout { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; }
.form-row-3 { display: grid; grid-template-columns: 1.2fr 2fr 1.5fr; gap: 1.25rem; }
.form-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.form-row-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.form-row-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 1.25rem; }
.form-row-1 { display: block; }
@media (max-width: 768px) { .form-row-3, .form-row-4, .form-row-5, .form-row-2 { grid-template-columns: 1fr; } }

.gender-radio-group { display: flex; gap: 0.75rem; height: 48px; }
.radio-label { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 0 1rem; cursor: pointer; flex: 1; font-weight: 500; }
.radio-label:has(input:checked) { border-color: var(--accent-color); background: rgba(99, 102, 241, 0.15); color: #a5b4fc; }

.form-actions-row { display: flex; gap: 1rem; margin-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #4f46e5); color: #fff; border: none; border-radius: 12px; padding: 0.85rem 1.5rem; font-family: inherit; font-size: 1rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; transition: var(--transition-smooth); box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(99,102,241,0.5); }
.btn-primary.small { padding: 0.5rem 1rem; font-size: 0.85rem; border-radius: 8px; }

.btn-ghost {
  background: rgba(255,255,255,0.05); color: var(--text-primary); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 0.85rem 1.5rem; font-family: inherit; font-size: 1rem; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition-smooth);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-ghost.small { padding: 0.5rem 1rem; font-size: 0.85rem; border-radius: 8px; }

.btn-danger-action {
  background: rgba(239, 68, 68, 0.15); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.3); border-radius: 8px; padding: 0.4rem 0.8rem; cursor: pointer; transition: var(--transition-smooth);
}
.btn-danger-action:hover { background: rgba(239, 68, 68, 0.3); color: #fff; }

/* ─── ALERTS E TOASTS ─── */
.error-alert { background: var(--danger-bg); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; padding: 1rem; border-radius: 12px; display: flex; align-items: center; gap: 0.75rem; }
.warning-alert { background: var(--warning-bg); border: 1px solid rgba(245,158,11,0.3); color: #fde68a; padding: 1rem; border-radius: 12px; display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }

.toast-container { position: fixed; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; gap: 1rem; z-index: 9999; }
.toast { min-width: 250px; background: var(--panel-bg); border: 1px solid var(--panel-border); backdrop-filter: blur(12px); border-radius: 12px; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; color: #fff; font-weight: 500; font-family: var(--font-family); }
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }
.toast.fadeOut { animation: fadeOutRight 0.3s forwards; }

@keyframes slideInRight { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeOutRight { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(100%); } }

/* ─── ADMIN TABLE ─── */
.data-table { width: 100%; border-collapse: collapse; text-align: left; }
.data-table th, .data-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.data-table th { color: var(--text-secondary); font-size: 0.85rem; text-transform: uppercase; }
.data-table tbody tr:hover { background: rgba(255,255,255,0.03); }

/* ─── PENDING LIST ─── */
.pending-list { display: flex; flex-direction: column; gap: 0.75rem; }
.pending-item { padding: 1rem !important; cursor: pointer; transition: var(--transition-smooth); border: 1px solid transparent; background: rgba(255,255,255,0.03); }
.pending-item:hover { border-color: var(--accent-color); background: rgba(99,102,241,0.05); transform: translateX(4px); }

/* ─── STUDENT PROFILE ─── */
.student-profile-card { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.profile-main { display: flex; align-items: center; gap: 1.5rem; }
.profile-avatar { width: 72px; height: 72px; border-radius: 20px; background: rgba(99,102,241,0.2); border: 2px solid rgba(99,102,241,0.4); display: flex; justify-content: center; align-items: center; font-size: 2rem; color: #a5b4fc; }
.profile-name-row h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.profile-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem 1.5rem; font-size: 0.9rem; color: var(--text-secondary); }
.profile-meta-grid strong { color: var(--text-primary); }
@media (max-width: 640px) { .profile-main { flex-direction: column; text-align: center; } .profile-meta-grid { grid-template-columns: 1fr; } }
.status-active { color: var(--success); font-weight: 600; }
.status-warning { color: var(--warning); font-weight: 600; }
.status-expired, .status-none { color: var(--danger); font-weight: 600; }

.history-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1rem; }
.history-table { width: 100%; border-collapse: collapse; text-align: left; }
.history-table th, .history-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.history-table th { color: var(--text-secondary); font-size: 0.85rem; text-transform: uppercase; }
.eval-latest { background: rgba(99,102,241,0.1); font-weight: 600; }

/* ─── BADGES ─── */
.badge { padding: 0.25rem 0.5rem; border-radius: 6px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.badge.admin { background: #ef4444; color: #fff; }
.badge.musculacao { background: #3b82f6; color: #fff; }
.badge.recepcao { background: #f59e0b; color: #fff; }
.badge-sub { color: var(--text-secondary); font-size: 0.9rem; font-weight: 400; }

.app-footer { text-align: center; color: var(--text-secondary); font-size: 0.85rem; }

.admin-header-actions { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.filter-group { display: flex; gap: 0.5rem; }

.hidden { display: none !important; }
.app-panel { animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes slideUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════
   LAUDO VISUAL (InBody Copy)
   ═══════════════════════════════════════════════ */
.laudo-wrap { width: 100%; max-width: 800px; margin: 0 auto; padding: 2rem 1rem; color: #111; animation: fadeIn 0.4s ease-out; }
.laudo-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.laudo-toolbar .btn-ghost { background: #fff; color: #333; border-color: #ddd; }
.laudo { background: #fff; border: 1px solid #c8cdd5; padding: 20px 24px; font-size: 11px; line-height: 1.35; color: #111; box-shadow: 0 10px 40px rgba(0,0,0,0.2); border-radius: 4px; }

@media (max-width: 768px) {
    .lb-body { flex-direction: column !important; }
    .lb-col-right { width: 100% !important; margin-top: 20px; }
    .laudo-wrap { padding: 1rem 0.5rem; }
    .laudo { padding: 15px; }
}

/* Laudo Internals */
.lb-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.lb-brand-inbody { font-size: 28px; font-weight: 900; letter-spacing: -.02em; color: #000; font-family: 'Helvetica Neue', Arial Black, sans-serif; }
.lb-device { font-size: 9px; color: #555; text-align: right; }
.lb-mb-logo { display: flex; align-items: center; gap: 8px; }
.lb-ecg { width: 48px; height: 32px; color: #111; }
.lb-mb-name { font-size: 22px; font-weight: 700; line-height: 1; }
.lb-mb-titulo { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: #444; }
.lb-mb-crn { font-size: 9px; color: #555; }
.lb-ficha { width: 100%; border-collapse: collapse; margin-bottom: 6px; font-size: 11px; }
.lb-ficha td { padding: 2px 4px; }
.lf-label { font-size: 9px; color: #555; white-space: nowrap; }
.lf-val { font-weight: 600; color: #000; padding-right: 12px; }
.lf-dob { font-size: 9px; color: #666; }
.lb-rule { border-top: 1px solid #999; margin: 4px 0 8px; }
.lb-rule-sm { border-top: 1px solid #ddd; margin: 8px 0; }
.lb-body { display: flex; gap: 20px; align-items: flex-start; }
.lb-col-left { flex: 1; min-width: 0; }
.lb-col-right { width: 185px; flex-shrink: 0; }
.lb-section-title { font-size: 11px; font-weight: 700; color: #000; margin: 4px 0; }

.lb-bar-header { display: flex; align-items: center; margin-bottom: 2px; }
.lb-bar-spacer { width: 120px; flex-shrink: 0; }
.lb-bar-zones { flex: 1; display: flex; }
.lbz { font-size: 8.5px; font-weight: 700; text-align: center; padding: 2px 0; }
.lbz-abaixo { flex: 0 0 30%; background: #e8e8e8; }
.lbz-normal { flex: 0 0 22%; background: #555; color: #fff; }
.lbz-acima { flex: 0 0 48%; background: #e8e8e8; }

.lb-bar-row { display: flex; align-items: center; margin-bottom: 6px; }
.lb-bar-label { width: 120px; flex-shrink: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 5px; padding-right: 8px; }
.lbl-name { font-size: 10px; font-weight: 700; color: #000; }
.lbl-val { font-size: 12px; font-weight: 700; color: #000; }
.lbl-unit { font-size: 9px; color: #333; }
.lbl-sub { font-size: 8.5px; color: #555; width: 100%; }

.lb-bar-area { flex: 1; }
.lb-bar-track { position: relative; height: 10px; background: #f5f5f5; border: 1px solid #bbb; margin-bottom: 1px; }
.lb-bar-fill { position: absolute; top: 0; bottom: 0; left: 0; background: #444; }
.lb-bar-tip { position: absolute; top: -5px; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #000; z-index: 2; margin-left:-5px; }
.lb-bar-scale { display: flex; justify-content: space-between; font-size: 7.5px; color: #555; padding: 0 1px; }

.lb-vis-header { display: flex; align-items: center; margin-bottom: 2px; }
.lb-vis-zones { flex: 1; display: flex; }
.lvz { font-size: 8.5px; font-weight: 700; padding: 2px 6px; }
.lvz-baixo { flex: 0 0 45%; background: #aaa; color: #fff; text-align: left; }
.lvz-elevado { flex: 0 0 55%; background: #e8e8e8; text-align: right; }
.lb-vis-track { position: relative; display: flex; height: 10px; border: 1px solid #bbb; margin-bottom: 1px; }
.lb-vis-low { flex: 0 0 45%; background: #888; }
.lb-vis-high { flex: 0 0 55%; background: #f0f0f0; }
.lb-vis-marker { position: absolute; top: -5px; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #000; z-index: 2; margin-left:-5px;}
.lb-vis-10 { position: absolute; bottom: -12px; left: 45%; transform: translateX(-50%); font-size: 7.5px; color: #555; }

.lb-hist-table { display: flex; flex-direction: column; }
.lb-hist-row { display: flex; align-items: stretch; border-bottom: 1px solid #e0e0e0; }
.lb-hist-row:last-child { border-bottom: none; }
.lb-hist-label { width: 110px; flex-shrink: 0; font-size: 9.5px; padding: 4px 6px 4px 0; border-right: 1px solid #e0e0e0; }
.lb-hist-cells { flex: 1; display: flex; }
.lb-hist-cell { flex: 1; border-right: 1px solid #e8e8e8; padding: 3px 4px; position: relative; display: flex; flex-direction: column; align-items: center; }
.lb-hist-cell:last-child { border-right: none; }
.lb-hist-dot { width: 7px; height: 7px; background: #000; border-radius: 50%; margin-top: 4px; }
.lb-hist-val { font-size: 8.5px; font-weight: 600; }
.lb-hist-date { position: absolute; bottom: 2px; font-size: 7.5px; color: #888; }

.lb-ctrl-table { width: 100%; border-collapse: collapse; }
.lb-ctrl-table tr { border-bottom: 1px dotted #ddd; }
.lct-label { font-size: 9.5px; padding: 2px 0; }
.lct-val { font-size: 11px; font-weight: 700; text-align: right; }
.lct-unit { font-size: 9px; color: #555; padding-left: 2px; }

.lb-tmb-display { font-size: 22px; font-weight: 700; display: flex; align-items: baseline; gap: 4px; }
.lb-tmb-unit { font-size: 11px; color: #555; font-weight: 400; }

.lb-obesity-checks { width: 100%; border-collapse: collapse; }
.loc-label { font-size: 9.5px; font-weight: 700; width: 28px; }
.loc-check { font-size: 9.5px; padding: 2px 3px; }
.chkbox { display: inline-block; width: 9px; height: 9px; border: 1px solid #555; margin-right: 1px; position: relative; }
.chkbox.checked::after { content: '✔'; position: absolute; top: -2px; left: 0px; font-size: 9px; }

.lb-dados-table { width: 100%; border-collapse: collapse; }
.lb-dados-table tr { border-bottom: 1px dotted #ddd; }
.ldt-label { font-size: 9.5px; padding: 3px 0; }
.ldt-val { font-size: 11px; font-weight: 700; text-align: right; }
.ldt-unit { font-size: 9px; color: #555; padding-left: 2px; }

.lb-footer { display: flex; justify-content: space-between; border-top: 1px solid #999; margin-top: 10px; padding-top: 4px; font-size: 8.5px; color: #555; }

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  body { background: #fff !important; color: #000 !important; }
  .glass-bg, #app-shell, .laudo-toolbar { display: none !important; }
  .laudo-wrap { display: block !important; padding: 0 !important; margin: 0 !important; max-width: none !important; width: 100% !important; overflow: visible !important; }
  .laudo { box-shadow: none !important; border: none !important; padding: 0 !important; min-width: 0 !important; width: 100% !important; min-height: 275mm !important; display: flex !important; flex-direction: column !important; justify-content: space-between !important; }
  
  .lb-body { flex-direction: row !important; flex: 1 !important; }
  .lb-col-right { width: 185px !important; margin-top: 0 !important; display: flex !important; flex-direction: column !important; justify-content: space-between !important; }
  .lb-col-left { display: flex !important; flex-direction: column !important; justify-content: space-between !important; }
  
  .lb-bar-row { margin-bottom: 12px !important; }
  .lb-rule-sm { margin: 12px 0 !important; }
  .lb-section-title { font-size: 13px !important; margin: 12px 0 8px !important; }
  .lb-history-table th, .lb-history-table td { padding: 6px 0 !important; }
  .lb-dados-table td { padding: 5px 0 !important; }
  .loc-check, .loc-label { padding: 4px 3px !important; }
}
