  
  .pagetitle {
    margin-bottom: 10px;
    align-content: center;
  }
  
  .pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 900;
    color: #fff;
  }


  .loginvideo {
    opacity:1 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity:1;
    background: #000;

  }



/* Efecto de borde con estrella fugaz en movimiento */
.cardindex {
    margin-bottom: 30px;
    border: none;
    border-radius: 20px;
    box-shadow: 0px 0 30px rgba(14, 100, 247, 0.603);
    background-color: rgba(3, 10, 22, 0.911);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    text-align: center;
}

.cardindex::before {
    content: '';
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 5px;
    border-image: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    border-image-slice: 1;
    animation: borderAnimation 5s linear infinite;
}

@keyframes borderAnimation {
    0% {
        border-image-source: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
    25% {
        border-image-source: linear-gradient(135deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
    50% {
        border-image-source: linear-gradient(225deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
    75% {
        border-image-source: linear-gradient(315deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
    100% {
        border-image-source: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
}

/* Estilo expandido */
.cardindex.expanded {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    z-index: 1000;
    overflow-y: auto; /* Para permitir el desplazamiento si el contenido es demasiado grande */
    background-color: rgba(3, 10, 22, 0.98); /* Ajuste para mayor contraste */
    padding: 20px;
}

/* Otros estilos */
.cardindex-header,
.cardindex-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #fff;
    padding: 15px;
}

.cardindex-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.cardindex-title span {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.cardindex-body {
    padding: 0 20px 20px 20px;
    text-align: center;

    color: #fff;
}

.cardindex-img-overlay {
    background-color: rgba(38, 120, 226, 0.6);
}

#totalBlockedRequest {
    color: #fff;
}


/* Estilo para la tabla */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #e9ecef; /* Color de texto */
    background-color: rgba(3, 10, 22, 0.911); /* Color de fondo */
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(14, 100, 247, 0.603); /* Sombra */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
  }
  
  .table::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 5px;
    border: 1px solid transparent;
    border-image: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    border-image-slice: 1;
    animation: borderAnimation 5s linear infinite;
    pointer-events: none;
  }
  
  @keyframes borderAnimation {
    0% {
      border-image-source: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
    25% {
      border-image-source: linear-gradient(135deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
    50% {
      border-image-source: linear-gradient(225deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
    75% {
      border-image-source: linear-gradient(315deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
    100% {
      border-image-source: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(14, 100, 247, 1), rgba(0, 0, 0, 0));
    }
  }
  
  /* Estilo para el encabezado de la tabla */
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #0d1b30; /* Color del borde del encabezado */
    background-color: #102d5a; /* Color de fondo del encabezado */
    text-align: center;
    align-content: center;
    padding: 0.75rem;
    font-weight: bold;
    color: #ffffff; /* Color del texto del encabezado */
    text-transform: uppercase;
  }
  
  /* Estilo para las filas de la tabla */
  .table tbody tr {
    border-top: 1px solid #2d2f36; /* Color del borde de las filas */
    transition: background-color 0.5s ease-in-out, transform 0.15s ease-in-out;
  }
  
  .table tbody tr:hover {
    background: #fff; /* Color de fondo al pasar el ratón */
    transform: scale(1.02);
  }
  
  /* Estilo para las celdas de la tabla */
  .table tbody td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #fff; /* Color del borde de las celdas */
    color: #fff; /* Color del texto */
    transition: color 0.5s ease-in-out;
    background: #0d1b30;
  }
  

  
  /* Estilo para la tabla en dispositivos pequeños */
  @media (max-width: 767.98px) {
    .table-responsive {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  
    .table-responsive > .table-bordered {
      border: 0;
    }
  }
  





/*--------------------------------------------------------------
# Footer index
--------------------------------------------------------------*/
.footerindex {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
    text-align: center;
  }
  
  .footerindex .copyright {
    text-align: center;
    color: #fff;
  }
  
  .footerindex .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #fff;
  }




/*------------------SIDEBAR---------------*/
.sidebar-bg-container {
    position: relative;
    width: 100%;
    height: 43%;
  }
  
  .sidebar-bg {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    width: 180%; /* Ajusta el tamaño de la imagen según sea necesario */
    opacity: 0.05; /* Ajusta la opacidad para dar efecto de marca de agua */
    z-index: -10;

  }
  
  @keyframes neon-border {
    0% {
      filter: drop-shadow(0 0 2px #ffffff);
    }
    50% {
      filter: drop-shadow(0 0 2px #3bbada);
    }

  }
  
  
 .badge-number {
    background: #fff !important;
    color: darkblue;
 }
 .badge-number:hover {
    background: rgb(23, 23, 206) !important;
    color: #fff;
 }

.dropdown-toggle:hover {
text-shadow: 0 0 5px rgb(217, 217, 218);
}

.logoheader {
    filter: drop-shadow(0 0 1px rgb(23, 23, 206));
    animation: neon-border 5s infinite alternate;
}

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 18px;
  right: 75px;
  background-color: #0056b3;
  color: white;
  border-radius: 100%;
  padding: 10px;
  font-size: 10px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip-text {
  visibility: hidden;
  background-color: #4a87d8;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: calc(-100% - 20px); /* Aparecerá a la izquierda */
  transform: translateY(-200%); /* Centrado verticalmente */
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease;
  white-space: nowrap; /* Mantener el texto en una línea */
  font-size: 12px;
}

.whatsapp-float:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  left: calc(-100% - 15px); /* Desplazar ligeramente el tooltip cuando esté visible */
}

.whatsapp-icon {
  font-size: 30px;
  color: #fff;
}

  .fondoperfil {
    background: #bdcbe92d;
    color:#000;
  }
  .fondoperfil h6{
    color:#fff !important
  }
  .fondoperfil span{
    color:#fff
  }
  .fondoperfil i{
    color:#fff
  }
  .fondoperfil i:hover{
    color:#fff !important
  }
  .fondoperfil span:hover{
    color:#fff !important
  }
  .fondoperfil a:hover{
    color:#2d5694c9 !important
  }

  .cardindexscore {
    margin-bottom: 30px;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 0 30px rgba(14, 100, 247, 0.603);
    background-color: rgba(3, 10, 22, 0.911);
    position: relative;
    overflow: hidden;
    cursor: default;
    align-content: center;
    width: auto;
    display: flex;
    justify-content: center; /* Centra el contenido horizontalmente */
}

/* Estilo expandido */
.cardindexscore.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%) scale(1.5); /* Escala el contenido */
    margin: 0;
    border-radius: 0;
    z-index: 1000;
    overflow-y: auto;
    background-color: rgba(3, 10, 22, 0.98);
    padding: 20px;
    display: flex;
    flex-direction: column; /* Coloca los elementos uno debajo del otro */
    justify-content: center; /* Centra el contenido verticalmente */
    align-items: center; /* Centra el contenido horizontalmente */
    transition: transform 0.3s ease; /* Transición suave al expandir */
}

.cardindex-titlescore {
    font-size: 30px; /* Ajusta el tamaño de la fuente para que se adapte a la anchura */
    font-weight: 700;
    color: #fff !important;
    font-family: "Poppins", sans-serif;
    text-align: center; /* Centra el texto */
    margin: 0;
}

.cardindex-bodyscore {
    display: flex;
    align-items: center;
    justify-content: center; /* Centra el contenido horizontalmente */
    padding: 1px; /* Ajusta el padding para que se adapte a la anchura */
    color: #fff;
}

.progress-bar-container {
    width: 100px; /* Ajusta el tamaño del contenedor del escudo */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shield {
    width: 70%;
    height: 70%;
}

.progress-text {
    margin-left: 10px;
    font-size: 28px; /* Ajusta el tamaño de la fuente para que se adapte a la anchura */
    font-weight: 700;
    color: #fff;
    margin-right: 40px; /* Espaciado entre el texto y el escudo */
}

/* Estilos para pantallas pequeñas */
@media (max-width: 600px) {
    .cardindexscore {
        width: 100%;
        margin-bottom: 20px;
        box-shadow: 0px 0 20px rgba(14, 100, 247, 0.603);
    }

    .cardindexscore.expanded {
        width: 90%;
        height: 90%;
        transform: translate(-50%, -50%) scale(1);
        padding: 10px;
    }

    .cardindex-titlescore {
        font-size: 20px;
    }

    .cardindex-bodyscore {
        padding: 5px;
    }

    .progress-bar-container {
        width: 80px;
        height: 60px;
    }

    .progress-text {
        font-size: 20px;
        margin-right: 20px;
    }
}

/* Estilos para pantallas medianas */
@media (min-width: 601px) and (max-width: 1024px) {
    .cardindexscore {
        width: 100%;
        margin-bottom: 25px;
        box-shadow: 0px 0 25px rgba(14, 100, 247, 0.603);
    }

    .cardindexscore.expanded {
        width: 85%;
        height: 85%;
        transform: translate(-50%, -50%) scale(1.2);
        padding: 15px;
    }

    .cardindex-titlescore {
        font-size: 25px;
    }

    .cardindex-bodyscore {
        padding: 5px;
    }

    .progress-bar-container {
        width: 90px;
        height: 70px;
    }

    .progress-text {
        font-size: 25px;
        margin-right: 30px;
    }
}

/* Estilos para pantallas grandes */
@media (min-width: 1025px) {
    .cardindexscore {
        width: 100%;
        margin-bottom: 30px;
        box-shadow: 0px 0 30px rgba(14, 100, 247, 0.603);
    }

    .cardindexscore.expanded {
        width: 80%;
        height: 80%;
        transform: translate(-50%, -50%) scale(1.5);
        padding: 20px;
    }

    .cardindex-titlescore {
        font-size: 30px;
    }

    .cardindex-bodyscore {
        padding: 10px;
    }

    .progress-bar-container {
        width: 100px;
        height: 80px;
    }

    .progress-text {
        font-size: 28px;
        margin-right: 40px;
    }
}
 
@keyframes glowing-red {
    0% {
        fill: red;
        filter: drop-shadow(0 0 5px red);
    }
    50% {
        fill: darkred;
        filter: drop-shadow(0 0 20px red);
    }
    100% {
        fill: red;
        filter: drop-shadow(0 0 5px red);
    }
}

@keyframes glowing-yellow {
    0% {
        fill: yellow;
        filter: drop-shadow(0 0 5px yellow);
    }
    50% {
        fill: darkgoldenrod;
        filter: drop-shadow(0 0 20px yellow);
    }
    100% {
        fill: yellow;
        filter: drop-shadow(0 0 5px yellow);
    }
}

@keyframes glowing-green {
    0% {
        fill: green;
        filter: drop-shadow(0 0 5px green);
    }
    50% {
        fill: darkgreen;
        filter: drop-shadow(0 0 20px green);
    }
    100% {
        fill: green;
        filter: drop-shadow(0 0 5px green);
    }
}

.glowing-red {
    animation: glowing-red 3s infinite alternate;
}

.glowing-yellow {
    animation: glowing-yellow 3s infinite alternate;
}

.glowing-green {
    animation: glowing-green 3s infinite alternate;
}



#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgb(3, 14, 31);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner-image {
    width: 200px; /* Ajusta el tamaño de la imagen según sea necesario */
    height: 250px; /* Ajusta el tamaño de la imagen según sea necesario */
    animation: techEffect 2s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.7));
}

@keyframes techEffect {
    0% {
        transform:  translateX(0) translateY(0);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.7));
    }
    25% {
        transform: scale(1.1) ;
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.9));
    }
    50% {
        transform: scale(1) ;
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.7));
    }
    75% {
        transform: scale(1.1) ;
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.9));
    }
    100% {
        transform: scale(1) ;
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.7));
    }
}


.hidden {
    opacity: 0;
    visibility: hidden;
}


/* Estilo para el modal */
.custom-modal {
  display: none; /* Ocultar por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(3, 14, 31); /* Fondo del mismo color */
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-modal-content {
  background-color: rgb(3, 14, 31);
  padding: 60px;
  border: none;
  width: auto;
  height: auto;
  color: #e9ecef;
  border-radius: 5px;
  text-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  top: 100px ;
}

/* Estilos generales para el modal */
.modal .modal-content {
  background-color: #f8f9fa; /* Fondo claro */
  border-radius: 8px; /* Bordes redondeados */
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); /* Sombra suave */
  border: none; /* Sin borde */
}

.modal .modal-header {
  background-color: #007bff; /* Fondo azul para el encabezado */
  color: #fff; /* Texto blanco */
  border-bottom: 2px solid #0056b3; /* Línea inferior */
  border-top-left-radius: 8px; /* Bordes superiores redondeados */
  border-top-right-radius: 8px;
}

.modal .modal-title {
  font-weight: bold; /* Negrita para el título */
  font-size: 20px; /* Tamaño de fuente mayor */
}

.modal .btn-close {
  background-color: transparent; /* Fondo transparente */
  border: none; /* Sin borde */
  color: #fff; /* Ícono de cierre blanco */
}

.modal .modal-body {
  padding: 20px; /* Espaciado interno */
  background-color: #ffffff; /* Fondo blanco */
}

.modal .form-label {
  font-weight: bold; /* Negrita para etiquetas de formulario */
  color: #495057; /* Color de texto gris oscuro */
}

.modal .form-control {
  border-radius: 4px; /* Bordes redondeados en los campos de formulario */
  border: 1px solid #ced4da; /* Borde gris */
}

.modal .form-select {
  border-radius: 4px; /* Bordes redondeados en los select */
  border: 1px solid #ced4da; /* Borde gris */
}

.modal .modal-footer {
  background-color: #f1f1f1; /* Fondo gris claro */
  border-top: 1px solid #e9ecef; /* Línea superior */
  padding: 15px; /* Espaciado interno */
  border-bottom-left-radius: 8px; /* Bordes inferiores redondeados */
  border-bottom-right-radius: 8px;
}

.modal .btn-secondary {
  background-color: #6c757d; /* Fondo gris para el botón "Close" */
  border-color: #6c757d; /* Borde gris */
}

.modal .btn-primary {
  background-color: #007bff; /* Fondo azul para el botón "Save changes" */
  border-color: #007bff; /* Borde azul */
}

.spinner-image {
  width: 100px; /* Ajusta el tamaño según sea necesario */
  height: 125px; /* Ajusta el tamaño según sea necesario */
  animation: techEffect 2s linear infinite;
  filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.7));
  margin-bottom: 20px;
}

@keyframes techEffect {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.7));
  }
  25% {
    transform: scale(1.1);
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.9));
  }
  50% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.7));
  }
  75% {
    transform: scale(1.1);
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.9));
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.7));
  }
}

/* Deshabilitar scroll en body cuando el modal está abierto */
body.modal-open {
  overflow: hidden;
}
.hack-mode-container {
  display: flex;
  align-items: center;
}

.hack-mode-icon {
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease; /* Transición para el cambio de color */
}

.hack-mode-icon.active {
  color: #ffff; /* Color dorado o amarillo cuando está activo */
}

.hack-mode-icon.inactive {
  color: #fff; /* Color gris cuando está inactivo */
}

  .form-check-label {
    color: #fff;
    text-shadow: 0 0 5px #000;
  }


  #user-department {
    color: #fff;
    display: none;
  }

  .modern-select {
    appearance: none;
    background-color: #00000040;
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 10px 15px;
    font-size: 16px;
    color: #fff;
    outline: none;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.modern-select:focus {
    border-color: #007bff;
    background-color: #0f2a47;
}

.modern-select option {
    background-color: #0d1b30;
    color: #fff;
    padding: 10px;
}

.modern-select:hover {
    background-color: #061b3a;
}

.modern-select:disabled {
    background-color: #2a3b5d;
    cursor: not-allowed;
    color: #7a869a;
}


  .nav {
    background: #0d1b30;
    color: #fff;
    padding: 10px;
}

.navlink:hover {
    border: none;
}

.nav-itemt a {
    color: #fff;
    padding: 10px;
}

.nav-itemt a:focus {
    padding: 10px;
}

.nav-link:active {
    color: #0d1b30 !important;
    padding: 10px;
}

.tab-content {
    background: #0d1b30;
    color: #fff;
    padding: 15px;
    align-items: center;
}

.nav-tabs .nav-link {
    border: none;
}

.tablepolicy thead th {
    vertical-align: bottom;
    background-color: #102d5a;
    border: none;
    text-align: center;
    align-content: center;
    padding: 0.75rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

.tablepolicy tbody tr {
    background-color: #1c3c70;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #102d5a;
}

.tablepolicy tbody tr:hover {
    background-color: #122b4d;
}

.tablepolicy tbody td {
    padding: 0.75rem;
    border: none;
    vertical-align: middle;
    text-align: center;
}

.tablepolicy tbody td .btn {
    color: #0d1b30;
    background-color: #ffffff;
    border: none;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin: 0 5px;
    cursor: pointer;
}

.tablepolicy tbody td .btn:hover {
    background-color: #0056b3;
    color: #fff;
}

.tablepolicy tbody td .btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #043e94;
}

.tablepolicy tbody td .btn-outline-primary {
  color: #000;
  padding: 5px 10px;
  margin:  5px;
  cursor: pointer;
}

.tablepolicy tbody td .btn-outline-primary:hover {
 text-shadow: 0 0 10px hsl(211, 100%, 35%);
}

/* Estilo moderno para los botones de selección */
.btn-check {
  display: none;
}

.btn-outline-light {
  color: #ffffff;
  background-color: rgba(14, 100, 247, 0.15);
  border: 1px solid rgba(14, 100, 247, 0.603);
  border-radius: 5px;
  padding: 10px 20px;
  margin: 5px;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 10px rgba(14, 100, 247, 0.603);
  text-align: center;
  align-items: center;
  cursor: pointer;
}

.btn-outline-light:hover {
  background-color: rgba(14, 100, 247, 0.5);
  color: #fff;
  box-shadow: 0px 0px 20px rgba(14, 100, 247, 0.9);
}

.btn-outline-light:active {
  background-color: rgba(14, 100, 247, 0.7);
  color: #ffffff;
  transform: scale(1.05);
}

.btn-check:checked + .btn-outline-light {
  background-color: rgba(14, 100, 247, 0.9);
  color: #ffffff;
  box-shadow: 0px 0px 20px rgba(14, 100, 247, 1);
}


.form-check {
  display: flex;
  align-items: center;
  text-align: center;
}

.form-check-input {
  margin-right: 8px; /* Espacio entre el checkbox y el texto */
}


/* Ajustes del modal con nombres únicos */
.unique-modal-content {
  background-color: #081529cc; /* Fondo translúcido oscuro */
  border-radius: 10px;
  border: none;
  color: #fff;
}

.unique-modal-header {
  border-bottom: none;
  background-color: #081529cc;
  color: #fff;
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.unique-modal-body {
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  background-color: #081529cc;
  color: #fff;
}

.unique-modal-footer {
  border-top: none;
  background-color: #081529cc;
  padding: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}


.unique-btn-primary {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.unique-btn-primary:hover {
  background-color: #081529cc;
}


@media (max-width: 768px) {
  .cardindex {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .cardindex {
    width: 100%;
    margin: 0 10px;
  }

  .logo img {
    max-width: 150px;
  }

  .btn-group label {
    font-size: 14px;
  }
}

.nav-pills .nav-link.active {
  color: #fff !important;
  background-color: #0056b3;
}

.language-switcher {
  
  position: absolute;
  top: 10px; /* Ajusta según necesites */
  right: 10px; /* Ajusta según necesites */
  display: flex;
  gap: 8px;
}

.language-flag {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 50%; /* Redondear las esquinas completamente */
  transition: transform 0.3s ease; /* Añadir un pequeño efecto */
  opacity: 0.30; /* Ajusta la opacidad para dar efecto de marca de agua */

}

.language-flag:hover {
  transform: scale(1.1); /* Efecto de agrandar al pasar el mouse */
}
.language-switcher2 {
  position: absolute;
  left: 10px; /* Ajusta según necesites */
  margin-top: 50%;
  display: flex;
  gap: 8px;

}

.language-flag2 {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 50%; /* Redondear las esquinas completamente */
  transition: transform 0.3s ease; /* Añadir un pequeño efecto */
  opacity: 0.20; /* Ajusta la opacidad para dar efecto de marca de agua */

}

.language-flag2:hover {
  transform: scale(1.1); /* Efecto de agrandar al pasar el mouse */
  opacity: 1; /* Ajusta la opacidad para dar efecto de marca de agua */

}


.notifications-container {
  position: relative;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  min-width: 18px;
  text-align: center;
  display: none;
}

.notifications-dropdown {
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
}

.notification-item {
  padding: 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.2s;
}

.notification-item:hover {
  background-color: #f8f9fa;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.notification-type {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.notification-time {
  font-size: 0.8em;
  color: #6c757d;
}

.notification-body p {
  margin: 0;
  font-size: 0.9em;
}

.severity-normal { border-left: 3px solid #0d6efd; }
.severity-alta { border-left: 3px solid #ffc107; }
.severity-crítica { border-left: 3px solid #dc3545; }

.no-notifications,
.notification-error {
  padding: 20px;
  text-align: center;
  color: #6c757d;
}

.notification-error {
  color: #dc3545;
}

.modal-lg {
  max-width: 900px;
}

#userSearchInput {
  padding: 8px;
  margin-bottom: 15px;
}

.badge {
  padding: 6px 12px;
  font-size: 0.9em;
}

.table-responsive {
  max-height: 500px;
  overflow-y: auto;
}