/* Estilos generales anteriores */
body {
    font-family: "Times New Roman", Times, serif;
    color: black;
    background-color: white;
    margin: 20px;
    line-height: 1.2;
}

h1 { font-size: 2em; font-weight: bold; margin-bottom: 0.5em; }
h2 { font-size: 1.5em; font-weight: bold; margin-top: 1em; margin-bottom: 0.5em; }

ul { list-style-type: disc; margin-left: 20px; }
li { margin-bottom: 4px; }

a { color: #0000EE; text-decoration: underline; }
a.visitado { color: #551A8B; }

/* NUEVOS ESTILOS PARA LA TABLA */
table {
    width: 100%;
    border-collapse: collapse; /* Une los bordes en una sola línea */
    margin-top: 20px;
}

table, th, td {
    border: 1px solid black; /* Borde negro simple */
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2; /* Color gris claro para el encabezado */
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #fafafa; /* Color de fondo alterno para filas pares */
}