/*
 * NICEADMIN MODIFICADO PARA ESTILO EMPRESARIAL SIGA 360
 * Basado en el diseño de NiceAdmin y la paleta de colores del Login.
 * Este archivo consolida los estilos base y los overrides.
 */

/*--------------------------------------------------------------
# General y Variables (Ajuste de Colores Base)
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  /* Variables primarias de SIGA 360 (Verde Sea Green) */
  --siga-primary: #2e8b57; 
  --siga-primary-hover: #267347;
  /* Colores de texto y fondo base */
  --nice-admin-bg: #edeff3; /* Fondo de la página */
  --nice-admin-text-dark: #012970; /* Color oscuro para títulos */
  --nice-admin-text-gray: #51678f; /* Color gris para texto secundario */
  
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--nice-admin-bg);
  color: #444444; /* Texto general más oscuro y legible */
}

a {
  color: var(--siga-primary); /* Enlaces en el color principal verde */
  text-decoration: none;
}

a:hover {
  color: var(--siga-primary-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
}

.is-hidden {
  display: none !important;
}

.card-max-width-500 {
  max-width: 500px;
}

.qr-summary-card {
  max-width: 320px;
}

.media-preview-image {
  max-height: 70vh;
  width: auto;
}

.spinner-square-md {
  width: 1.5rem;
  height: 1.5rem;
}

.status-text-neutral {
  color: #000 !important;
}

.status-text-success {
  color: #198754 !important;
}

.status-text-danger {
  color: #dc3545 !important;
}

.status-text-warning {
  color: darkgoldenrod !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.legend-color-box {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
}

.legend-color-success {
  background-color: #198754;
}

.legend-color-warning {
  background-color: darkgoldenrod;
}

.legend-color-danger {
  background-color: #dc3545;
}

.modal-header-alert {
  background-color: rgb(248, 215, 218) !important;
  color: rgb(162, 32, 41) !important;
}

.csp-dialog-open {
  overflow: hidden;
}

.csp-dialog-shell {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.48);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.csp-dialog-shell.is-active {
  opacity: 1;
}

.csp-dialog__panel {
  width: min(100%, 36rem);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.22);
}

.csp-dialog-shell--sm .csp-dialog__panel {
  width: min(100%, 28rem);
}

.csp-dialog-shell--lg .csp-dialog__panel {
  width: min(100%, 48rem);
}

.csp-dialog-shell--xl .csp-dialog__panel {
  width: min(100%, 72rem);
}

.csp-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e9ecef;
}

.csp-dialog__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--nice-admin-text-dark);
}

.csp-dialog__close {
  border: 0;
  background: transparent;
  color: #6c757d;
  font-size: 1.75rem;
  line-height: 1;
}

.csp-dialog__body {
  padding: 1.25rem;
}

.csp-dialog__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0 1.25rem 1.25rem;
}

.csp-camera-feed {
  display: block;
  width: 100%;
  min-height: 16rem;
  border-radius: 0.75rem;
  background: #111827;
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .csp-dialog-shell {
    padding: 1rem;
    align-items: flex-end;
  }

  .csp-dialog__panel,
  .csp-dialog-shell--sm .csp-dialog__panel,
  .csp-dialog-shell--lg .csp-dialog__panel,
  .csp-dialog-shell--xl .csp-dialog__panel {
    width: 100%;
    max-height: calc(100vh - 2rem);
    border-radius: 1rem 1rem 0.5rem 0.5rem;
  }
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 20px;
}
.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--nice-admin-text-dark);
  text-align: center; /* <-- CAMBIO IMPLEMENTADO AQUÍ */
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--siga-primary); /* Usando color principal verde */
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: var(--siga-primary-hover);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.tituloencabeza {
  font-size: 24px;
  color: var(--siga-primary); /* Color de encabezado en verde */
  line-height: 0;
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}
.dropdown-menu .dropdown-header, .dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}
.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}
.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}
.dropdown-menu .dropdown-divider {
  color: #eaedf1; /* Gris más neutral */
  margin: 0;
}
.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}
.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}
@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}

/* Light Backgrounds (Ajustes de color para estilo empresarial suave) */
.bg-primary-light {
  background-color: #d1e7dd; /* Un verde muy claro */
  border-color: #a3ccb4;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #e7e8f0;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header, .card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--nice-admin-text-dark); /* Color de título más oscuro */
  font-family: "Poppins", sans-serif;
}
.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}
.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}
.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: var(--siga-primary); /* Botón activo en verde */
  background-color: #e9f7ef; /* Fondo muy claro, similar al login */
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}
.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--siga-primary);
}
.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}
.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}
.breadcrumb a:hover {
  color: var(--siga-primary);
}
.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}
.breadcrumb .active {
  color: var(--nice-admin-text-gray);
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}
.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}
.nav-tabs-bordered .nav-link:hover, .nav-tabs-bordered .nav-link:focus {
  color: var(--siga-primary);
}
.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: var(--siga-primary); /* Pestaña activa en verde */
  border-bottom: 2px solid var(--siga-primary);
}

/*--------------------------------------------------------------
# Header (Encabezado Superior)
--------------------------------------------------------------*/

.logo {
  line-height: 1;
}
@media (min-width: 1200px) {
  .logo {
    width: 280px; /* Ajuste al nuevo ancho de sidebar */
  }
}
.logo img {
  max-height: 50px;
  margin-right: 6px;
  width: auto;
}
.logo span {
  font-size: 22px;
  font-weight: 700;
  color: var(--nice-admin-text-dark);
  font-family: "Nunito", sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px; /* Altura más profesional */
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05); /* Sombra más sutil */
  background-color: #ffffff; /* Blanco limpio */
  padding-left: 20px;
}
.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: var(--nice-admin-text-dark);
}
.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}
@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 60px; /* Ajuste a la nueva altura */
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }
  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}
.header .search-form {
  width: 100%;
}
.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #333;
  border: 1px solid #e9f1ff; /* Borde sutil */
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}
.header .search-form input:focus, .header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}
.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}
.header .search-form button i {
  color: var(--nice-admin-text-dark);
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}
.header-nav > ul {
  margin: 0;
  padding: 0;
}
.header-nav .nav-icon {
  font-size: 20px; /* Iconos más pequeños */
  color: #555;
}
.header-nav .nav-profile {
  color: var(--nice-admin-text-dark);
}
.header-nav .nav-profile img {
  max-height: 36px;
}
.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}
.header-nav .badge-number {
  position: absolute;
  inset: 4px 6px auto auto;
  font-weight: normal;
  font-size: 11px;
  padding: 3px 6px;
}
.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}
.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}
.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}
.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}
.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}
.header-nav .messages .message-item a {
  display: flex;
}
.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}
.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}
.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}
.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}
.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
}
.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}
.header-nav .profile .dropdown-header span {
  font-size: 14px;
}
.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}
.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}
.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar (Menú Izquierdo)
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px; /* Ajuste a la altura del header */
  left: 0;
  bottom: 0;
  width: 280px; /* Ancho ajustado para mejor legibilidad */
  z-index: 996;
  transition: all 0.3s;
  padding: 15px 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #dde4f0 transparent;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05); /* Sombra sutil */
  background-color: #f6f9fc; /* Fondo blanco/gris muy claro para limpieza */
}
@media (max-width: 1199px) {
  .sidebar {
    left: -280px;
  }
}
.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #f6f9fc;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: #dde4f0;
}

@media (min-width: 1200px) {
  #main, #footer {
    margin-left: 280px; /* Ajuste al nuevo ancho del sidebar */
  }
}
@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}
@media (min-width: 1200px) {
  .toggle-sidebar #main, .toggle-sidebar #footer {
    margin-left: 0;
  }
  .toggle-sidebar .sidebar {
    left: -280px;
  }
}

.sidebar-nav {
  padding: 0 15px; /* Padding ajustado */
  margin: 0;
  list-style: none;
}
.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li span {
  font-size: 16px;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}
.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #aab7cf; /* Gris claro para las secciones */
  font-weight: 600;
  margin: 15px 0 5px 0;
}

/* Ítems del Menú (Enlaces Principales) */
.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--nice-admin-text-dark); /* Color oscuro para contraste */
  transition: 0.3;
  background: transparent;
  padding: 10px 15px;
  border-radius: 4px;
  border-left: 4px solid transparent; /* Indicador sutil de estado */
}
.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px; 
  color: #7a8aa3; /* Iconos en gris sutil */
}

/* Estado Colapsado */
.sidebar-nav .nav-link.collapsed {
  color: var(--nice-admin-text-dark);
  background: transparent;
}
.sidebar-nav .nav-link.collapsed i {
  color: #7a8aa3;
}

/* Estado Activo */
.sidebar-nav .nav-link:not(.collapsed) {
  color: var(--siga-primary); /* Texto activo en verde */
  background: #e9f7ef; /* Fondo muy claro */
  border-left: 4px solid var(--siga-primary); /* Barra verde activa */
}
.sidebar-nav .nav-link:not(.collapsed) i {
  color: var(--siga-primary); /* Icono activo en verde */
}

/* Estado Hover */
.sidebar-nav .nav-link:hover {
  color: var(--siga-primary);
  background: #fcfcfc; /* Blanco al hacer hover */
}
.sidebar-nav .nav-link:hover i {
  color: var(--siga-primary);
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}
.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

/* Submenús */
.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}
.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--nice-admin-text-gray); /* Submenús en gris */
  transition: 0.3;
  padding: 8px 0 8px 40px;
  transition: 0.3s;
}
.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}
.sidebar-nav .nav-content a:hover, .sidebar-nav .nav-content a.active {
  color: var(--nice-admin-text-dark);
}
.sidebar-nav .nav-content a.active i {
  background-color: var(--siga-primary); /* Punto activo en verde */
}

/*--------------------------------------------------------------
# Dashboard (Secciones de niceAdmin sin override fuerte)
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}
.dashboard .filter .icon {
  color: #a9b9d8;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}
.dashboard .filter .icon:hover, .dashboard .filter .icon:focus {
  color: var(--siga-primary);
}
.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}
.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}
.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}
.iconslist .icon {
  background-color: #f6f9ff;
  border-radius: 0.25rem;
  text-align: center;
  color: #d8e7ee;
  padding: 15px 0;
}
.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}
.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profile Page (Mantener la estructura NiceAdmin)
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}
.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}
.profile .profile-card h3 {
  font-size: 18px;
}
.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}
.profile .profile-card .social-links a:hover {
  color: var(--siga-primary);
}
.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}
.profile .profile-overview .card-title {
  color: var(--nice-admin-text-dark);
}
.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}
.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}
.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--siga-primary);
}
.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}
.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: var(--siga-primary);
}
.contact .info-box h3 {
  font-size: 20px;
  color: var(--nice-admin-text-dark);
  font-weight: 700;
  margin: 20px 0 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form button[type=submit] {
  background: var(--siga-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: var(--siga-primary-hover);
}

/* ... (El resto de estilos de contacto, error y animaciones se mantienen) ... */

/*--------------------------------------------------------------
# Footer //pie de pagina
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}
.footer .copyright {
  text-align: center;
  color: #7a8aa3; /* Gris más suave */
}
.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #7a8aa3;
}

/*--------------------------------------------------------------
# Clases Utilitarias Adicionales
--------------------------------------------------------------*/

.selected-row {
  background: #e9f7ef; /* Color de selección más suave (similar al login-left) */
}

.clickable-row:hover {
  cursor: pointer;
}

.ui-autocomplete-loading { 
  border-color: red !important;
}

.is-required:after {
  content: '*';
  margin-left: 3px;
  color: red;
  font-weight: bold;
}

.label-negrita {
  font-weight: bold;
}

.accordion-item .accordion-button {
  background-color: #f6f9ff; /* Fondo más suave */
  color: var(--nice-admin-text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid #ebeef4;
}

.visor-pdf {
  width: 100%;
  height: 600px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.banner-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Clase de color primaria para textos */
.text-siga {
  color: var(--siga-primary) !important;
}