@media screen and (max-width: 980px) and ( orientation: landscape ) {
    body {
      display: block;
    }
  }

/* Estilos para el contenedor principal */
div {
  font-family: Arial, sans-serif;
  margin: 20px;
}

/* Estilos para el título */
h1 {
  text-align: center;
  color: #333;
}

/* Estilos para la tabla */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* Estilos para las celdas de encabezado */
th {
  background-color: #f4f4f4;
  color: #555;
  text-align: left;
  padding: 10px;
  border-bottom: 2px solid #ddd;
}

/* Estilos para las celdas */
td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* Estilos para las filas alternas */
tbody tr:nth-child(odd) {
  background-color: #fafafa;
}

/* Estilos para las filas al pasar el cursor */
tbody tr:hover {
  background-color: #f1f1f1;
}

/* Estilos para el área de texto */
textarea {
  width: 100%;
  height: 60px;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: none;
  font-family: Arial, sans-serif;
}

/* Estilos para el botón */
button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}



