/* assets/css/app.css — UGEL Sechura Tablero */

:root {
  --ugel-primary:   #1a4f8a;
  --ugel-secondary: #e8a000;
  --ugel-success:   #198754;
  --ugel-danger:    #dc3545;
  --ugel-light:     #f4f7fb;
}

body {
  background: var(--ugel-light);
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: .92rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- NAVBAR ---- */
.navbar { box-shadow: 0 2px 6px rgba(0,0,0,.18); }
.navbar-brand { font-size: 1.1rem; letter-spacing: .3px; }

/* ---- CARDS DASHBOARD ---- */
.card-stat {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: transform .15s;
}
.card-stat:hover { transform: translateY(-3px); }
.card-stat .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

/* ---- TABLERO ACTIVIDADES ---- */
.actividad-row { transition: background .1s; }
.actividad-row:hover { background: #eef3fb; }
.valoracion-cell input[type=number] { width: 80px; }
.pct-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .85rem;
}
.pct-alto   { background: #d1fae5; color: #065f46; }
.pct-medio  { background: #fef3c7; color: #92400e; }
.pct-bajo   { background: #fee2e2; color: #991b1b; }

/* ---- BRÚJULA ---- */
.brujula-table th { font-size: .78rem; background: #1a4f8a; color: #fff; }
.brujula-table td { font-size: .82rem; vertical-align: middle; }
.brujula-table .na-cell { background: #f8f9fa; color: #aaa; text-align: center; }
.item-seccion-header { background: #dbeafe; font-weight: 700; font-size: .8rem; }

/* ---- PROGRESO ---- */
.progress-sm { height: 10px; border-radius: 5px; }

/* ---- SEMANA SELECTOR ---- */
.semana-card {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border-color .15s, box-shadow .15s;
}
.semana-card.active,
.semana-card:hover {
  border-color: var(--ugel-primary);
  box-shadow: 0 0 0 3px rgba(26,79,138,.15);
}
.semana-card.cerrada { opacity: .6; }

/* ---- UTIL ---- */
.table-hover tbody tr:hover { background: #f0f5ff; }
.btn-ugel { background: var(--ugel-primary); color: #fff; }
.btn-ugel:hover { background: #153e6e; color: #fff; }
.section-title {
  border-left: 4px solid var(--ugel-primary);
  padding-left: 10px;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer { font-size: .8rem; }

/* ---- LOGIN ---- */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a4f8a 0%, #2563eb 100%);
}
.login-card {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .brujula-table { font-size: .72rem; }
  .hide-mobile { display: none !important; }
}
