/* --- Variables del Sistema de Diseño (Modo Claro Command Center - Legibilidad Alta) --- */
:root {
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Colores Base (Modo Claro Nítido) */
  --bg-primary: #f8fafc;            /* Slate 50 */
  --bg-surface: rgba(255, 255, 255, 0.9);
  --bg-card: rgba(255, 255, 255, 0.85);
  --border-color: rgba(15, 23, 42, 0.12);

  /* Colores de Acento (Teal-Blue) */
  --accent-primary: #0284c7;       /* Sky Blue */
  --accent-secondary: #4f46e5;     /* Indigo */
  --color-success: #10b981;        /* Emerald */
  --color-success-light: #059669;
  --color-danger: #e11d48;         /* Rose */
  --color-warning: #d97706;        /* Amber */
  --color-text-main: #0f172a;      /* Slate 900 */
  --color-text-muted: #334155;     /* Slate 700 - Contraste alto */
}

/* --- Reseteo Estándar --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;                  /* Font base más grande */
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding: 5.5rem 1.5rem 2rem 1.5rem;
}

/* Malla de degradados de fondo claros */
.glass-bg {
  position: fixed;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* --- Contenedor Principal --- */
.app-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* --- Encabezado --- */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo-icon {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 850;
  letter-spacing: -0.5px;
}

.logo-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Indicador de Conexión */
.badge-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(15, 23, 42, 0.04);
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.status-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.status-indicator.online {
  background-color: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
}

.status-indicator.offline {
  background-color: var(--color-danger);
  box-shadow: 0 0 8px var(--color-danger);
}

.status-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* --- Layout en Rejilla --- */
.grid-layout {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 2rem;
}

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

/* --- Tarjetas Estilo Glassmorphic Modo Claro --- */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04), 0 2px 4px rgba(15, 23, 42, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06), 0 3px 8px rgba(15, 23, 42, 0.02);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.card-header h2 {
  font-size: 1.45rem;
  font-weight: 800;
}

.icon {
  width: 26px;
  height: 26px;
  color: var(--accent-primary);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: -0.5rem;
}

/* --- Formulario de Impuestos --- */
.tax-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

select, input {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.18);
  color: var(--color-text-main);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 1.02rem;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
}

select:focus, input:focus {
  border-color: var(--accent-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

/* Campo numérico monetario */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 700;
  font-size: 1.05rem;
}

.input-wrapper input {
  padding-left: 2.2rem;
}

/* --- Botones --- */
.btn {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 750;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:active {
  transform: scale(0.97);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
}

.btn-primary:hover:not(:disabled) {
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.35);
  filter: brightness(1.05);
}

.btn-success {
  background-color: var(--color-success);
  color: #fff;
}

.btn-success:hover:not(:disabled) {
  background-color: var(--color-success-light);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.25);
}

.btn-success-light {
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--color-success);
  color: var(--color-success-light);
}

.btn-success-light:hover:not(:disabled) {
  background-color: rgba(16, 185, 129, 0.15);
}

.btn-danger {
  background-color: var(--color-danger);
  color: #fff;
}

.btn-danger:hover:not(:disabled) {
  background-color: #ff3352;
  box-shadow: 0 5px 15px rgba(225, 29, 72, 0.25);
}

.btn-warning {
  background-color: var(--color-warning);
  color: #fff;
}

.btn-warning:hover:not(:disabled) {
  background-color: #f59e0b;
  box-shadow: 0 5px 15px rgba(217, 119, 6, 0.25);
}

/* --- Resultados de Impuestos --- */
.tax-result {
  background: rgba(15, 23, 42, 0.025);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 1.5rem;
  margin-top: 0.5rem;
  transition: opacity 0.3s ease;
}

.tax-result h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  color: var(--accent-primary);
}

.result-lines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

.result-row .value {
  color: var(--color-text-main);
  font-weight: 700;
}

.tax-line {
  padding-left: 0.6rem;
  border-left: 2px solid var(--accent-secondary);
}

.divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  margin: 0.4rem 0;
}

.total-row {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.total-row .highlight {
  color: var(--accent-primary);
  font-size: 1.35rem;
  font-family: var(--font-mono);
}

.rule-box {
  background: rgba(2, 132, 199, 0.05);
  border: 1px dashed rgba(2, 132, 199, 0.25);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 1rem;
  color: #0369a1;
  font-weight: 500;
}

.hidden {
  display: none !important;
}

/* --- Panel de Tracking --- */
.control-panel {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Rejilla de Métricas */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 1rem;
}

.metric-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.1rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.highlight-cyan { color: #0284c7; }
.highlight-yellow { color: #d97706; }
.highlight-green { color: #059669; }
.highlight-red { color: #e11d48; }
.highlight-orange { color: #ea580c; }
.highlight-purple { color: #7c3aed; }

/* Batería */
.battery-indicator {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.battery-bar-container {
  height: 8px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}

.battery-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease, background-color 0.5s ease;
}

.battery-bar.high { background-color: var(--color-success); }
.battery-bar.medium { background-color: #d97706; }
.battery-bar.low { background-color: var(--color-danger); }

/* --- Mapa SVG Integrado (Modo Claro) --- */
.map-container {
  background: #f1f5f9;              /* Slate 100 */
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.route-map {
  width: 100%;
  height: auto;
  display: block;
}

.map-label {
  font-size: 9.5px;
  font-family: var(--font-mono);
  font-weight: 700;
  pointer-events: none;
}

.map-status-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--accent-primary);
  font-weight: 700;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Animación del indicador del camión */
.glowing-circle {
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% { r: 6; opacity: 0.8; }
  100% { r: 20; opacity: 0; }
}

/* --- Consola Terminal MQTT (Modo Claro Nítido) --- */
.terminal-container {
  background: #ffffff;              /* Pure White */
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.terminal-header {
  background: rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-weight: 700;
}

.terminal-action {
  cursor: pointer;
  color: var(--color-danger);
  font-weight: 800;
  transition: opacity 0.2s;
}

.terminal-action:hover {
  opacity: 0.8;
}

.terminal-body {
  height: 180px;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;                 /* Fuente del log más grande */
  line-height: 1.5;
  color: #1e293b;
}

/* Estilos de Líneas de Log */
.log-entry {
  animation: fadeIn 0.2s ease-out;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  padding-bottom: 0.35rem;
}

.system-log {
  color: var(--color-text-muted);
  font-weight: 500;
}

.log-time {
  color: #64748b;
  font-weight: 600;
}

.log-topic {
  color: var(--accent-secondary);
  font-weight: 700;
}

.log-payload {
  color: var(--color-text-main);
  font-weight: 500;
}

.log-tag {
  font-size: 0.65rem;
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  font-weight: 800;
  margin-right: 0.4rem;
}

.tag-normal {
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent-primary);
}

.tag-burst {
  background: rgba(79, 70, 229, 0.1);
  color: var(--accent-secondary);
}

.tag-offline {
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-warning);
}

.log-offline {
  border-left: 3.5px solid var(--color-warning);
  padding-left: 0.6rem;
}

.highlight-burst {
  background: rgba(79, 70, 229, 0.03);
  border-left: 3.5px solid var(--accent-secondary);
  padding-left: 0.6rem;
}

/* Scrollbar */
.terminal-body::-webkit-scrollbar {
  width: 6px;
}
.terminal-body::-webkit-scrollbar-track {
  background: transparent;
}
.terminal-body::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.15);
  border-radius: 3px;
}
.terminal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 23, 42, 0.25);
}

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

/* --- Estilos de Tablas y Registro Contable --- */
.table-container {
  width: 100%;
  overflow-x: auto;
  background: #ffffff; /* Fondo blanco puro */
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem; /* Letras de tabla más grandes */
  text-align: left;
}

th, td {
  padding: 1.25rem 1.5rem; /* Relleno amplio para mayor legibilidad */
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--color-text-main);
}

th {
  background: rgba(15, 23, 42, 0.025);
  font-weight: 800; /* Negrita pesada */
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(15, 23, 42, 0.015);
}

/* Badges de Estado */
.badge-status-order {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-pending {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.badge-dispatched {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.badge-completed {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

/* --- Barra de Navegación de Demo Superior --- */
.demo-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 999999;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.demo-logo {
  font-weight: 850;
  font-size: 1.1rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.5px;
}

.demo-logo span {
  font-size: 0.7rem;
  background: #f1f5f9;
  color: #475569;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.demo-links {
  display: flex;
  gap: 0.75rem;
}

.demo-link-btn {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
  color: #475569;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.demo-link-btn:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.04);
}

.demo-link-btn.active-client {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.15);
}

.demo-link-btn.active-driver {
  color: #f97316;
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.15);
}

.demo-link-btn.active-admin {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.15);
}

@media (max-width: 480px) {
  .demo-top-bar {
    padding: 0 0.75rem;
    height: 54px;
  }
  .demo-logo {
    display: none;
  }
  .demo-links {
    width: 100%;
    justify-content: space-around;
  }
  .demo-link-btn {
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
  }
}

/* Selector de idioma en el demo bar */
.demo-lang-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-lang-lbl {
  font-size: 0.8rem;
  font-weight: 750;
  color: #475569;
}

.demo-lang-select {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 6px;
  color: #0f172a;
  padding: 0.25rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 750;
  font-family: 'Outfit', sans-serif;
  outline: none;
  cursor: pointer;
  width: auto;
}

.demo-lang-select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.15);
}

/* --- Nuevos Estilos del Command Center (Facturación, Filtros, Modal de Impuestos, CSV y Salud) --- */

.filter-bar {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
  background: rgba(15, 23, 42, 0.02);
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 190px;
  flex: 1;
}

.filter-group label {
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--color-text-muted);
}

.filter-group input, .filter-group select {
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 0.88rem;
  font-family: var(--font-sans);
  background: #ffffff;
  color: var(--color-text-main);
  outline: none;
  transition: all 0.2s ease;
}

.filter-group input:focus, .filter-group select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.12);
}

/* Modal de Facturación Premium */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000;
  padding: 2rem;
}

.invoice-card {
  background: #ffffff !important;
  color: #0f172a !important;
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15) !important;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.invoice-hr {
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  margin: 1.25rem 0;
}

/* Badge de Estado en Invoices */
.badge-status-order.badge-completed {
  background-color: rgba(16, 185, 129, 0.12);
  color: var(--color-success-light);
}

.badge-status-order.badge-dispatched {
  background-color: rgba(2, 132, 199, 0.1);
  color: var(--accent-primary);
}

.badge-status-order.badge-pending {
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--color-warning);
}

/* System Health styles */
.health-status-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.health-status-badge.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success-light);
}

.system-health-panel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Estilos de Impresión de Facturas */
@media print {
  body * {
    visibility: hidden !important;
  }
  
  #invoice-print-container, #invoice-print-container * {
    visibility: visible !important;
  }
  
  #invoice-print-container {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: #000000 !important;
  }
  
  .no-print {
    display: none !important;
  }
}
