/* ============================================================
   ESTILOS - Backoffice CASSAS
============================================================ */

/* ── 1. Layout general ─────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, Segoe UI, Roboto, Arial;
  background: #f3f4f6;
  color: #111827;
}

/* ── 2. Login ───────────────────────────────────────────── */
.login-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
}

.login-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}

.login-subtitle {
  color: #6b7280;
  margin-bottom: 24px;
}

/* ── 3. Inputs y labels ─────────────────────────────────── */
.label {
  display: block;
  margin: 12px 0 4px;
  font-size: 14px;
  font-weight: 500;
}

.input {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
}

.input:focus {
  outline: none;
  border-color: #2563eb;
}

/* ── 4. Botones ─────────────────────────────────────────── */
.btn {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-danger {
  background: #dc2626;
  color: #fff;
}

/* ── 5. Mensajes ────────────────────────────────────────── */
.msg {
  margin-top: 12px;
  font-size: 14px;
  color: #374151;
}

/* ── 6. Layout dashboard ────────────────────────────────── */
.dashboard-wrap {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  background: #1e293b;
  color: #fff;
  padding: 24px 16px;
  flex-shrink: 0;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #fff;
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li {
  margin-bottom: 8px;
}

.sidebar-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: #2563eb;
  color: #fff;
}

.main-content {
  flex: 1;
  padding: 32px;
}

.page-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ── 7. Tarjetas ────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

/* ── 8. Tabla ───────────────────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th {
  text-align: left;
  padding: 10px 12px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
}

td {
  padding: 10px 12px;
  border-bottom: 1px solid #f3f4f6;
}

tr:hover td {
  background: #f9fafb;
}

/* ── 9. Badges ──────────────────────────────────────────── */
.badge {
  display: inline-blo