body { background: #f6f7fb; }
.card { border: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-radius: 16px; }
.btn, .form-control, .form-select { border-radius: 12px; }
.table { background: #fff; border-radius: 16px; overflow: hidden; }
.badge { border-radius: 999px; }

.kpi {
  display: flex;
  align-items: center;
  gap: 12px;
}
.kpi i {
  font-size: 26px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(13,110,253,0.12);
  color: #0d6efd;
}

.progress { height: 10px; border-radius: 999px; }
.progress-bar { border-radius: 999px; }

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tocar para expandir (móvil/desktop) */
.tap-expand { cursor: pointer; }
.is-expanded .text-truncate-2 {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  white-space: normal;
}

/* Móvil: pegar más el título de la página al encabezado */
@media (max-width: 576px) {
  main.container {
    margin-top: 0.75rem !important;
  }
  .page-head {
    margin-bottom: 0.75rem !important;
  }
  .page-head h4 {
    margin-bottom: 0.25rem !important;
  }
}
