/* Estructura general */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 0;
}

div {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Encabezados */
h1, h2, h3 {
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 16px;
}

/* Títulos y subtítulos */
p strong {
    font-size: 18px;
    font-weight: bold;
}

/* Listas ordenadas */
ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

ol li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

td {
    background-color: #fff;
}

/* Estilo para enlaces */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Estilo para las tablas */
table th {
    text-align: center;
    font-size: 16px;
}

table td {
    font-size: 14px;
}

table td p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Estilo para centrado de texto */
p[style*="text-align: center;"] {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/* Estilo de los párrafos dentro de tablas */
table td {
    vertical-align: top;
}

/* Mejora de la accesibilidad */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    div {
        padding: 10px;
    }
    p {
        font-size: 14px;
    }
    ol li {
        font-size: 14px;
    }
    table th, table td {
        font-size: 14px;
    }
}
