/* Paleta del cliente */
:root {
  --inspecciones-primary: #f36f22;
  --inspecciones-dark: #5a5c69;
  --inspecciones-muted: #858796;
  --inspecciones-success: #006400;
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 0;
}

/* AdminLTE overrides con paleta */
.brand-link,
.nav-sidebar .nav-link.active,
.btn-primary,
.bg-primary,
.badge-primary,
.alert-primary {
  background-color: var(--inspecciones-primary) !important;
  border-color: var(--inspecciones-primary) !important;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: #d85f1a !important;
  border-color: #d85f1a !important;
  color: #fff !important;
}

.text-primary,
a.text-primary:hover {
  color: var(--inspecciones-primary) !important;
}

.sidebar-dark-primary .nav-sidebar > .nav-link.active {
  background-color: var(--inspecciones-primary) !important;
}

.bg-success,
.btn-success {
  background-color: var(--inspecciones-success) !important;
  border-color: var(--inspecciones-success) !important;
}

.text-dark {
  color: var(--inspecciones-dark) !important;
}

/* Dashboard: tonos pastel (misma paleta, menos intensos) */
.small-box.bg-primary {
  background-color: #fcd5c4 !important;
  color: #5a5c69 !important;
}
.small-box.bg-primary .icon > i {
  color: rgba(243, 111, 34, 0.4) !important;
}
.small-box.bg-success {
  background-color: #c8e6c8 !important;
  color: #5a5c69 !important;
}
.small-box.bg-success .icon > i {
  color: rgba(0, 100, 0, 0.4) !important;
}

.card-header {
  background-color: var(--inspecciones-dark);
  color: #fff;
}

.btn:focus, .btn:active:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(243, 111, 34, 0.25);
}

.login-page .card-primary.card-outline {
  border-top: 3px solid var(--inspecciones-primary);
}

.login-page .btn-primary {
  background-color: var(--inspecciones-primary);
  border-color: var(--inspecciones-primary);
}

.login-page .btn-primary:hover {
  background-color: #d85f1a;
  border-color: #d85f1a;
}
