.app-sidebar__user-avatar {
    width: 48px;
    background: gray;
    padding: 6px;
}
.app-sidebar__toggle{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15pt;
}
.app-sidebar__toggle::before{
	display: none;
}



/*------------------------------*/
.headerRegister, .header-primary{
	background: #009688;
	color: #FFF;
}
.headerUpdate{
	background: #007bff;
	color: #FFF;
	
}
.headerValidarRut{
	background: #FF00FF;
	color: #fbfcfc;
}
.headerDelete{
	background: #FF0000;
	color: #FFF;
}
.headerDetalle{
	background: #FFFF00;
	color: #000000;	
}
/*----------0------------*/







/*- desactivar select al editar alumno*/

.yes-active { 
	pointer-events: auto; 
	
} 

.not-active { 
	pointer-events: none; 
	cursor: default; 
} 







.notBlock{
	display: none;
}

/*Estilos login*/
#divLoading{
	position: fixed; 
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(254,254,255, .65);
	z-index: 9999;
	display: none;
}
#divLoading img{
	width: 50px;
	height: 50px;
}


/*enlaces en dashboard */

img.interactivo {
	max-width:30%;
	width:auto;
	height:auto;  
	margin:10px 10px 0 0;
}

/*cambio de fuente datatable */


#contenidoTabla {
	font-size: 1px;
  }
  
  td {
	font-size: 13px;
	color: black;
	
  }
  
  th {
	font-size: 15px;
	color:green;
	
  }

  	/*solucion en datatable cortar texto a la otra linea, puede ser las dos    th,td
	th,td{
	max-width:100px !important;
	word-wrap: break-word
	}
	 
	  */
  td{
	max-width:100px !important;
	word-wrap: break-word
	}

	/*color rojo en select asignaturas ya elegidas*/
	
   #listAsignatura option:disabled {
    color: red;
   }

   /*eliminar linea href*/
   .linkw:hover {
	text-decoration: none;
   }


   /*eleccion de pds*/
#modalFormEleccion .modal-content { border-radius: 14px; box-shadow: 0 10px 35px rgba(0,0,0,0.2); }
#modalFormEleccion .modal-header { background: linear-gradient(90deg, #007bff, #00c6ff); color: #fff; }
#modalFormEleccion .modal-title { font-weight: 600; }
#modalFormEleccion .close { color: #fff; opacity: 0.9; font-size: 1.4rem; }
#modalFormEleccion .close:hover { opacity: 1; }
#modalFormEleccion .modal-body { background-color: #f9f9f9; padding: 25px; }
#modalFormEleccion label { font-weight: 600; }
#modalFormEleccion select.form-control, #modalFormEleccion input.form-control { border-radius: 10px; }
#modalFormEleccion .btn { border-radius: 8px; font-weight: 500; }
#modalFormEleccion .btn-primary { background: linear-gradient(90deg, #007bff, #00c6ff); border: none; }
#modalFormEleccion .btn-secondary { background: #6c757d; border: none; }

/* en vista reset eleccion
/* Evitar que el texto rompa las celdas */
#modalAlumnosBody table th,
#modalAlumnosBody table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* descriptor de asignatura */
/* Contenedor general de los formularios */
.formularios-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
  min-height: 250px;
}

.formulario-circle {
  position: relative;
  width: 140px;
  text-align: center;
  margin: 20px;
  transition: all 0.5s ease;
}

.formulario-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 2;
}

.formulario-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.formulario-circle.active .formulario-btn {
  background: linear-gradient(135deg, #ff8800, #ff0000); /* celeste */
}


/* Asignaturas en grid responsive con máximo 3 columnas */
.asignaturas-circle {
  display: none;          /* por defecto ocultas */
  margin-top: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-content: center;
  gap: 10px;
}

.asignatura-btn {
  display: inline-block;
  border-radius: 50px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.asignatura-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #00b4db, #0083b0);
}

/* Descripción centrada */
#descripcion-asignatura {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  background: #f1faff;
  color: #333;
  font-size: 1rem;
  text-align: justify;
}

/* Responsive columnas */
@media (max-width: 600px) {
  .asignaturas-circle {
    grid-template-columns: 1fr; /* 1 columna en móviles */
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .asignaturas-circle {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  }
}

@media (min-width: 901px) {
  .asignaturas-circle {
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
  }
}



/*vista como veran los alumnos, utp*/
#modalFormVistaUtp .modal-header {
    background-color: #007bff;
    color: white;
  }

  #modalFormVistaUtp .modal-title {
    font-weight: bold;
    font-size: 1.25rem;
  }

  #modalFormVistaUtp .modal-body {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1.5rem;
    border-radius: 0 0 0.3rem 0.3rem;
  }

  #title-descripcion {
    color: #343a40;
    font-size: 1.2rem;
  }

  #modalFormVistaUtp .modal-footer {
    background-color: #f1f3f5;
    border-top: 1px solid #dee2e6;
  }

  #modalFormVistaUtp .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
  }

  #modalFormVistaUtp .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
  }

  