/* ─────────────────────────────────────────────────────────────────────────────
   Feudo Láser – Gestión Comercial  |  Custom CSS
   ───────────────────────────────────────────────────────────────────────────── */

/* Fuente base */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Navbar */
.navbar-brand {
  letter-spacing: 0.5px;
}

/* Cards */
.card {
  border-radius: 0.75rem;
}

.card-header {
  border-radius: 0.75rem 0.75rem 0 0 !important;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* Tablas */
.table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Badges de estado */
.badge {
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Botones de acción rápida */
.btn-outline-dark:hover {
  background-color: #212529;
  color: #fff;
}

/* Código / referencias */
code {
  font-size: 0.9em;
  background-color: #f8f9fa;
  padding: 0.1em 0.4em;
  border-radius: 0.25rem;
  color: #495057;
}

/* Login page */
.login-logo {
  font-size: 4rem;
  color: #212529;
}

/* Scrollbar personalizado (webkit) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #adb5bd;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6c757d;
}

/* Responsive: tabla en móvil */
@media (max-width: 576px) {
  .table th, .table td {
    font-size: 0.78rem;
    padding: 0.4rem 0.5rem;
  }
}
