
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4;
}

form {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
}

form label {
    display: block;
    margin-top: 10px;
}

form input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

form button {
    margin-top: 15px;
    padding: 10px;
    width: 100%;
    background: #0078d7;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background: #005bb5;
}

h2 {
    text-align: center;
}



.header-container {
    text-align: center;
    margin-bottom: 20px;
}

/* Style pour le titre h1 */
#title {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, sans-serif;
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 5px; /* Réduction de l'espacement après le titre */
}

/* Style pour le paragraphe */
#subtitle {
    font-family: Arial, sans-serif;
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-top: 0; /* Pas d'espace supplémentaire avant le sous-titre */
}

#checkbox-container {
    display: flex;
    justify-content: left;
    gap: 20px; /* Espacement entre les labels */
    margin-top: 10px; /* Espace après le sous-titre */
}

#checkbox-container label {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

#checkbox-container input {
    margin-right: 5px; /* Espace entre la checkbox et le texte */
}

/* Style pour le popup du graphique */
.tooltip {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}
