body {
    font-family: 'Arial', sans-serif;
    background-color: #e3f2fd; /* Fondo celeste claro */
    color: #1565c0; /* Texto azul */
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 90%; /* Se adapta a pantallas pequeñas */
    margin: auto;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #0d47a1; /* Azul más oscuro para el título */
    font-size: 1.8em;
}

p {
    text-align: center;
    color: #1565c0;
    font-size: 1em;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
    padding: 10px;
    background-color: #bbdefb; /* Fondo celeste */
    border: 1px solid #90caf9; /* Borde azul claro */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

li:hover {
    background-color: #90caf9; /* Cambio de fondo al pasar el cursor */
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

input[type="checkbox"] {
    transform: scale(1.3);
    margin-right: 10px;
}

.bold {
    font-weight: bold;
    color: #0d47a1;
}

#status {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
    color: #1565c0;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }

    li {
        font-size: 0.9em;
    }

    #status {
        font-size: 0.85em;
    }
}
.navigation {
    text-align: center;
    margin-top: 20px;
}

.navigation button {
    background-color: #0d47a1;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
}

.navigation button:hover {
    background-color: #1565c0;
}
