body{
    font-family: Arial, sans-serif;
    background: #fffdf5; /* blanco crema */
    margin: 0;
}

/* Encabezado */
header{
    background: #ffd6e7; /* rosa pastel */
    color: #8a5a44;
    text-align: center;
    padding: 20px;
}

/* Menú */
nav{
    background: #fff3b0; /* amarillo pastel */
    padding: 10px;
}

nav ul{
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li{
    color: #8a5a44;
    font-weight: bold;
}

/* Contenido principal */
main{
    padding: 20px;
}

/* Tabla */
table{
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

th{
    background: #ffd6e7; /* rosa pastel */
    color: #8a5a44;
}

td, th{
    border: 1px solid #ffe9a8;
    padding: 10px;
    text-align: center;
}

tr:nth-child(even){
    background: #fff9e6; /* amarillo muy suave */
}

/* Botones */
button{
    background: #ffe082; /* amarillo pastel */
    color: #6d4c41;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover{
    background: #ffd54f;
    transform: scale(1.05);
}

/* Tarjetas */
article,
aside{
    margin-top: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ffd6e7;
}

/* Pie de página */
footer{
    background: #ffd6e7;
    color: #8a5a44;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

/* Clase para addClass() */
.resaltado{
    background: #fff3b0;
    color: #8a5a44;
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
}

/* Figura animada */
#animar{
    width: 50px;
    height: 50px;
    background: #ffd6e7;
    border-radius: 50%;
    border: 3px solid #fff3b0;
}