.header {
    background-color: #FFD700;
    padding: 15px;
    border-radius: 15px 15px 0 0;
}
.header h1 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.info-header {
    background-color: #5A5D5E;
    padding: 10px;
    font-weight: bold;
    border-radius: 15px 15px 0 0;
}
.table td, .table th {
    border: 1px solid #ddd;
}




  #spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* fondo oscuro semi-transparente */
    z-index: 9999;
  }

  .spinner-backdrop {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .spinner-xl {
    width: 5rem;
    height: 5rem;
  }


  .form-scale .form-check-input {
    transform: scale(1.5); /* Doble de tamaño */
    margin-right: 10px;  /* Espacio entre el checkbox y el texto */
  }
  
  .form-scale .stylos {
    font-size: 1.3rem; /* Aumenta el tamaño del texto */
    font-weight: bold; /* Texto en negrita */
  }

  .underline-red{
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 15px; /* Aumenta el espacio entre texto y línea */
    text-decoration-style: dotted;
  }

.check-error {
  border-color: red;
}
.lista-guiones {
  list-style-type: none; /* Elimina el punto */
  padding-left: 1em;
}

.lista-guiones li::before {
  content: "– "; /* Guion largo + espacio */
  color: black;   /* Puedes cambiar el color del guion si quieres */
}


    /* Estilo para resaltar el checkbox */
    #terminos_condiciones {
      width: 20px;
      height: 20px;
      border: 2px solid #007bff; /* Borde azul */
      box-shadow: 0 0 3px #007bff;
      transition: 0.3s ease;
  }

  #terminos_condiciones:focus {
      outline: none;
      box-shadow: 0 0 5px 2px #007bff;
  }

  #emp_aut_condiciones {
    border: 2px solid #007bff; /* Borde azul */
    box-shadow: 0 0 3px #007bff;
    transition: 0.3s ease;
  }

  #emp_aut_condiciones:focus {
    outline: none;
    box-shadow: 0 0 5px 2px #007bff;
}

.estiloGeneral-checkbox {
  border: 2px solid #007bff; /* Borde azul */
  box-shadow: 0 0 3px #007bff;
  transition: 0.3s ease;
}


.estiloGeneral-checkbox:focus {
  outline: none;
  box-shadow: 0 0 5px 2px #007bff;
}



/*Estilos radio buton, penultima sesion*/

.custom-radio-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.custom-radio-group input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #007bff; /* azul */
  border-radius: 10px; /* cuadrado con bordes redondeados */

  cursor: pointer;
  margin-right: 5px;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.custom-radio-group input[type="radio"]:checked {
  background-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

