body{
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #74ebd5, #9face6);
    margin: 0;
    padding: 20px;
    justify-content: center;
}

/* Contenedor principal */
.contenedor{
    max-width: 800px;
    margin: auto;
    background-color: #ffffff;
    padding: 18px;
    border-radius: 13px;
    box-shadow: 0 9px 25px rgba(0, 0, 0, 0.2);
    animation: aparecer 0.8s ease-in-out;
}

/* Animación */
@keyframes aparecer{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Título */
h1{
    margin-bottom: 18px;
    text-align: center;
    color: #2c3e50;
}

h1::after{
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: #4a69bd;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* Tabla */
table{
    width: 100%;
    border-collapse: collapse;
    color: #2c3e50;
    border-radius: 10px;
    overflow: hidden;
}

/* Celdas */
th, td{
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dcdde1;
}

/* Encabezados */
th{
    background-color: #4a69bd;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filas */
tr:nth-child(even){
    background-color: #fafafa;
}

tr:hover{
    background-color: #f1f2f6;
    box-shadow: inset 0 0 0 9999px rgba(74, 105, 189, 0.05);
}

/* Texto */
p{
    font-size: 17px;
    margin: 8px 0;
    color: #34495e;
}

/* Detalle visual en cada fila */
tr td::before{
    content: "•";
    color: #4a69bd;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 600px){
    body{
        padding: 10px;
    }

    .contenedor{
        padding: 14px;
    }

    p{
        font-size: 15px;
    }

    th{
        font-size: 14px;
    }
}

