body {
font-family: Arial, sans-serif;
line-height: 1.6;
padding: 15px;
max-width: 600px;
margin: auto;
background-color: #f9f9f9;
}

.card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
color: #333;
font-size: 1.2rem;
}

.field {
margin-bottom: 20px;
}

.surface {
margin-bottom: 20px;
width: calc(100% - 25px);
}

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

input[type="number"], select {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}

.radio-group {
display: flex;
gap: 20px;
}

.radio-group label {
font-weight: normal;
cursor: pointer;
}

.results {
margin-top: 25px;
padding: 15px;
background: #eef7ff;
border-left: 5px solid #2196F3;
}

ul {
padding-left: 20px;
}

.logo {
width:200px;
}


.header {
    display: flex;
    justify-content: space-between; /* Écarte les éléments aux extrémités */
    align-items: flex-start;        /* Aligne le lien vers le haut */
    margin-bottom: 20px;
}

.lang-switch {
    color: #666;
    font-size: 0.8em;
    text-decoration: none;
    padding-top: 5px;               /* Ajustement optionnel pour l'alignement visuel */
}

.lang-switch:hover {
    text-decoration: underline;
}

.mentions-legales {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee; /* Une fine ligne pour séparer du reste */
    font-size: 0.85em; /* Texte plus petit */
    color: #666; /* Couleur grise plus discrète */
    line-height: 1.4;
}

.mentions-legales p {
    margin-bottom: -15px;
}