    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

    }
    header {
      background-color: #990000;
      color: #fff;
      padding: 20px;
      text-align: center;
    }
    main {
      display: flex;
      margin-top: 20px;
    }
    nav {
      background-color: #4D1818;
      color: #ecf0f1;
      padding: 20px;
      width: 200px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    nav a {
      text-decoration: none;
      color: #ecf0f1;
      margin-bottom: 10px;
      font-weight: bold;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #990000;
    }
    section {
      background-color: #fff;
      padding: 20px;
      flex: 1;
    }
    table {
      width: 80%;
      margin: 20px auto;
      border-collapse: collapse;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      background-color: #fff;
    }
    th, td {
      padding: 12px 15px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }
    th {
      background-color: #3498db;
      color: #fff;
    }
    tr:nth-child(even) {
      background-color: #f2f2f2;
    }
   .menu-header {
      background-color: #990000;
      color: #fff;
      padding: 10px;
      text-align: center;
      font-weight: bold;
    }

   .home {
      background-color: #3498DB;
      color: #fff;
      padding: 10px;
      text-align: center;
      font-weight: bold;
    }

.rojo{
    color: #fd3800;
	font-weight: bold;
}

.amarillo{
	color: #f9ff64;
	font-weight: bold;
}

.celeste{
	color: #34e2dd;
	font-weight: bold;
}

.verde{
	color: #148f77;
}

.azul{
	color: #0078ff;
	font-weight: bold;
}
.blanco{
	color: #ffffff;
	font-weight: bold;
}

.terminal {
    background-color: #000;
	color: #8ae234;
    width: 600px;
	/*font-weight: bold;*/
}

.terminal2 {
    background-color: #000;
    width: 600px;
}

.pt1{
    color: #fd3800;
}

#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#cerrar {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
}

@media only screen and (max-width: 768px) {
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
header {
  background-color: #990000;
  color: #fff;
  padding: 20px;
  text-align: center;
}

main {
  display: flex;
  flex-direction: column; /* Cambiado a columna para dispositivos móviles */
  margin-top: 20px;
}

nav {
  background-color: #4D1818;
  color: #ecf0f1;
  padding: 20px;
  width: 100%; /* Ancho completo en dispositivos móviles */
  box-sizing: border-box; /* Incluye el padding en el ancho total */
}

nav a {
  text-decoration: none;
  color: #ecf0f1;
  margin-bottom: 10px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #990000;
}

section {
  background-color: #fff;
  padding: 20px;
}

table {
  width: 100%; /* Ancho completo en dispositivos móviles */
  margin: 20px 0; /* Ajuste del margen */
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #3498db;
  color: #fff;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.menu-header {
  background-color: #990000;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}
   .home {
      background-color: #3498DB;
      color: #fff;
      padding: 10px;
      text-align: center;
      font-weight: bold;
    }

}


