.container {
  width:1080px;
  margin:0px auto;
  font-size:1em;
  font-family: "Arial", Georgia, Serif;
  font-size: 15px;
}
header {
  text-align:center;
  border: 1px solid #666;
  background: #cccccc;
}
a {
  color: #333;
  text-decoration: none;
}

section,aside {
  margin-top: 5px;
 padding: 2px;
  -moz-border-radius:3px;-webkit-border-radius:3px;-o-border-radius:3px;border-radius:3px;
}
section {
  float: left;
  width: 100%;
  height: auto;
  background: #fafafa;
  border: 1px solid #ccc;
}
aside {
  float: right;
  width: 0%;
  background:#ccc;
  color: #333;

}
nav {

  padding:0.2%;
  background:#f06156;
  margin-top: 0.5%;
  height: 120px;
}
nav ul {
  list-style-type:none;
  
  padding: 0; /* Remove padding */
  display: flex; /* Use flex to arrange items horizontally */
  justify-content: center; /* Center the items horizontally */
 
  text-align: center;
}
nav ul li {
  display: inline;
}
nav ul li a:hover {
  background-color: grey;
  text-decoration: underline;
   color: blueviolet;
            font-size: 20px;
            
}
nav ul li a {
 display:inline-block;
 text-align:center;
 text-decoration:none;
 color: #75302a;
 font-weight: bold;
  padding:6px 15px;
  margin:2px;
  background:#fafafa;

  -moz-border-radius:3px;-webkit-border-radius:3px;-o-border-radius:3px;border-radius:3px;
}
footer {
  position: fixed;

  width: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0px 0px 10px 0px;
  background-color: #333;
  text-align: center;
}
footer a {
  color: #fff;
}

h2 {
  color: #f06156;
}
/* pantalla maximo 980px */
@media screen and (max-width:980px) {
  .container {
    width:98%;
  }
  section {
    width:68%;
  }
}
 
/* pantalla maximo 700px */
@media screen and (max-width:700px) {
  aside,section {
    float:none;
    width:96%;
    font-size:1.2em;
  }
  nav, section {
    font-size:1.2em;
  }
  aside {
    margin-top:5px;
    background:#333;
    color: #fff;
  }
  nav ul {
    float:none;
    clear:both;
  }
}
 
 
/* pantalla maximo 480px */
@media screen and (max-width:480px) {
  aside {
    display:block;
    background:#333;
    color: #fff;
    font-size:1.5em;
  }
  nav, section {
    font-size:1.5em;
  }
  section {
    width:94%;
  }
  nav ul {
    display: table;
    text-align: center;
    float: none;
    width:100%;
  }
  nav ul li {
    float:none;
  }
}
.info_clases{
  display: inline-block;

  background-color: beige;
  width: 200px;
  height: auto;
  padding: 10px;
  margin-left: 35px;
  margin-bottom: 5px;
  overflow: hidden;
  box-sizing: border-box;
  }
   h3 {
  font-size:14px;
  padding: 5px;
  color:#333;
  background-color: pink;
  text-align: center;
  }
  input,select,textarea,button {
  width: 400px;
  margin-left: 80px;
  margin-bottom: 3px;
  box-sizing: border-box;
  padding: 10px;
  display: block;
  border:2px solid green;
}

img {
     display: block; /* Hace que la imagen sea un bloque para que se puedan aplicar márgenes */
     margin: 0 auto; /* Márgenes automáticos a los lados */
        }
.titulo1{
  background-color: green;
  padding: 10px;
  font-weight: bold;
  text-align: center;
}
.mi-estilo {
  background-color: beige;
  color: black;
  text-decoration: underline;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
}
.bgPink{
  background-color: pink;
  color: black;
  font-weight: bold;
 }
 .boton-consulta {
      background-color: #4CAF50; /* Verde */
      color: black;
      padding: 10px 20px;
      text-align: center;
      text-decoration:none;
      display: flex;
      font-size: 16px;
      border-radius: 5px;
      transition: background-color 0.3s;
      align-items: center;
      justify-content: center;

  }
 .boton-consulta:hover {
      color: red;            
      text-decoration: underline; 
      background-color: grey;
  }
   .enlace {
            color: #3498db;
            text-decoration: none;
            font-size: 15px;
            /*transition: color 0.3s ease, font-size 0.3s ease;*/
        }

        .enlace:hover {
            color: blueviolet;
            font-size: 20px;
            text-decoration: underline;
        }
td, th {
  border: black 1px solid;
}
.tabla1{
   background-color: beige;
  padding: 10px;
  font-weight: bold;
  text-align: center;
}
  .checkbox-container {
            display: flex;
            gap: 0px;  /*Espacio entre los checkboxes */
           
        }
   .checkbox-container input[type="checkbox"] {
          display: block;
            margin: 4px;
            padding: 0px;
        }

