@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Patua+One&display=swap');

/* Stile di base per il documento */
body {
    font-family: "Lobster Two", sans-serif;
    font-style: normal;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
    color: #e44d26;
    font-family: "Patua One", serif;
    font-style: normal;
}

/* Stile per l'elenco delle persone */
#peopleList {
    list-style: none;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

li {
    background-color: #ffecb3;
    border: 2px solid #ff9800;
    margin: 10px 0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center; /* Aggiunto per centrare il testo */
}

td {
    padding: 0 30px;
}

li:hover {
    transform: scale(1.05);
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

button {
    background-color: #faf19d;
    color: #e44d26;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 40%;
}

button:hover {
    background-color: #45a049;
}

/* Media Query per stile mobile-first */
@media (max-width: 767px) {
    li {
        width: 100%;
        font-size: 16px; /* Dimensione del font ridotta per dispositivi mobili */
    }
}
