body {
  width: 100%;
  background: lightyellow;
  margin: 0;
  font-family: Arial, sans-serif;
}

a {
  font-size: 18px;
  color: white;
  text-decoration: none;
}

h1 {
  text-align: center;
}

h4 {
  font-size: 18px;
  text-align: left;
  color: red;
}

p {
  font-size: 15px;
  text-align: left;
  width: 600px;
}
#container {
  width: 100%;
  margin: 0px;
  border: 1px solid black;
  box-sizing: border-box;
  background-size: cover;
  background: lightblue;
  min-height: 100vh; /* Asegura que el contenedor tenga al menos la altura de la ventana */
  padding-bottom: 20px; /* Añade espacio al final del contenedor */
}
header {
  background: red;
  height: 50px;
  width: 100%;
  text-align: center;
  line-height: 50px;
  color: white;
  box-sizing: border-box;
}

* {
  margin: 0px;
  padding: 0px;
}

nav ul li {
  float: left;
  list-style: none;
  margin: 10px;
  line-height: 30px;
  box-sizing: border-box;
}

.clearfix {
  clear: both;
}


#content {
  float: right;
  width: 80%;
  min-height: 550px;
  max-height: 1150px;
  box-sizing: border-box;
}

#estado {
  text-align: center;
  font-size: 20px;
  color: black;
}

#interruptor, #id_targeta, #equipo, #text, #boton, #Enviar {
  width: 150px;
  font-size: 18px;
  color: black;
  margin-bottom: 15px;
  padding: 6px;
  background: white;
  box-sizing: border-box;
}

#text {
  width: 80%;
  padding: 5px;
  margin-top: 30px;
  cursor: pointer;
}

aside {
  float: right;
  background: black;
  color: white;
  text-align: center;
  font-size: 15px;
  width: calc(20%);
  min-height: 100vh; /* Asegura que el menú de navegación tenga al menos la altura de la ventana */
  max-width: 80%;
  box-sizing: border-box;
}

#boton {
  background: blue;
  text-align: center;
  font-family: monospace;
  font-size: 12px;
  margin-top: 10px;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px; /* Ajusta el margen inferior según necesites */
}

#buscar {
  margin-top: 10px; /* Ajusta el margen superior según necesites */
}