.tabla-cursos-responsive{
    max-height: 600px;  /* ajusta el alto que quieras */
    overflow-y: auto;
    overflow-x: auto;   /* mantiene scroll horizontal si hay muchas columnas */
    border: 1px solid #ddd;
	margin-top: 3em;
	margin-bottom: 5em;
}

/* Cabecera fija */
.tabla-cursos thead th {
    position: sticky;
    top: 0;
    background: #0e688b;
    z-index: 10;  /* asegura que quede por encima de las filas */
    padding: 10px;
    border-bottom: 1px solid #ddd;
	color: white;
}

/* Celdas */
.tabla-cursos th,
.tabla-cursos td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

td.horario {
	text-align: center;
}

td.curso {	
	width: 250px;
}

td.ancho1 {
	width: 80px;
}

td.ancho2 {
	width: 100px;
}

td.ancho3 {
	width: 150px;
}

input.fecha {
	color: #666;
	background-color: #fafafa;  
	border: 1px solid #ccc;
	padding: 10px 15px;
}

.box-filtro {
	margin-bottom: 1em;
	margin-top: 3em;
	text-align: center;
	position: relative;
}

.box-filtro input, .box-filtro select {
	border-radius: 3px 3px 3px 3px!important;
	margin-right: 1em;
	min-width: 250px;
}

.button {
	padding-top: 2px!important;
	padding-bottom: 8px!important;
}

.subtitle {
	margin-top: 2em;
	font-size: 18px;
	width: 100%;
	text-align: center;
	position:relative;
}

#loading {
  width: 20px;
  height: 20px;
  border: 6px solid #eee;
  border-top: 6px solid #9ad8dd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
  margin: 20px auto;
  right: 0.5em;
  top: -1em;
  position:absolute;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#loadingLink {
	width: 20px;
	height: 20px;
	border: 6px solid #eee;
	border-top: 6px solid #9ad8dd;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: none;
	margin: 20px auto;
	top: 2em;
	position: absolute;
	left: 48%;
}

#btnDescargar, .enlace {
	cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .tabla-cursos th,
    .tabla-cursos td {
        font-size: 12px;
        padding: 6px;
    }
}

