body {
    width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #c0c1c2, #ffffff);
    background-attachment: fixed;
    min-height: 100vh;
}
/* Creamos el pseudo-elemento que contendrá el fondo desenfocado */
body::before {
    content: '';
    position: fixed;
    /* Ocupa toda la pantalla, independientemente del scroll */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/fondo.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    /* Nivel de desenfoque */
    -webkit-filter: blur(8px);
    /* Compatibilidad con Safari */
    z-index: -1;
    /* Lo posicionamos detrás de todo el contenido */
    transform: scale(1.1);
    /* Escala ligeramente para evitar bordes borrosos */
}

h1 {
    text-align: center;
    color: #007bff;
    margin-top: 20px;
}

table {
    margin: 0 auto;
    width: 90%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

table th, table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #003c5c;
}

table th {
    background-color: rgba(0, 191, 255, 0.2);
    font-weight: bold;
    color: #004e70;
}

table a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

table a:hover {
    text-decoration: underline;
}

b font {
    font-size: 16px;
}

.titulo {
    color: #c62828;
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.instrucciones {
    background-color: #ffffff;
    border-left: 5px solid #c62828;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.instrucciones p {
    margin: 15px 0;
    line-height: 1.6;
}

.subtitulo {
    margin-top: 25px;
    font-weight: 600;
    color: #2e7d32;
}