body {
    font-family: 'Arial', serif;
    font-size: 16px;
    
}

.gdpr {
    margin: auto;
    max-width: 600px;
    text-align: center;
}

h1 {
    text-align: center;
}
h1 img {
    vertical-align: middle;
}

h2 {
    text-align: center;
}
h2 img {
    vertical-align: middle;
}


.dettaglisoggiorno {
    margin: auto;
}

.dettaglisoggiorno td {
    border: 1px Solid Black;
    padding: 10px;
    font-weight: bold;
}

td.checkin {
    background-color: #4CAF50; /* Verde chiaro */
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(to right, #4CAF50, #33cc33);
    font-weight: bold;
}

td.checkout {
    background-color: #4CAF50; /* Verde chiaro */
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(to right, #4CAF50, #33cc33);
    font-weight: bold;
}

td.persone {
    background-color: #4CAF50; /* Verde chiaro */
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(to right, #4CAF50, #33cc33);
    font-weight: bold;
}



form {
    display: flex;
    flex-direction: column;
}

.form-group { /* Aggiungi una classe per raggruppare label e input */
    display: flex;
    align-items: center;
    margin: auto;
    margin-bottom: 10px;
    max-width: 500px;
}

.form-group label {
    flex: 0 0 250px; /* Larghezza fissa per la label */
    text-align: right; /* Allinea il testo della label a destra */
    margin-right: 10px;
}

.form-group input,
.form-group select {
    flex: 1; /* L'input si estenderà per occupare lo spazio rimanente */
    text-align: left;
}

form button[type="submit"] {
    background-color: #4CAF50; /* Verde chiaro */
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: auto; /*4px 2px;*/
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 4px;
    width: 300px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(to right, #4CAF50, #33cc33);
    font-weight: bold;
}
