/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9; /* Légère modification de la couleur de fond */
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    color: #333;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    border-radius: 8px; /* Ajout de bord arrondis aux titres */
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background-color: #fff;
    margin-bottom: 20px; /* Augmentation de la marge entre les éléments de la liste */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

a {
    color: #007bff;
    text-decoration: none;
    font-size: 18px;
}

a:hover {
    text-decoration: underline;
}

#sonde-list {
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

#charts {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.chart-container {
    width: 90%; /* Augmentation de la largeur des conteneurs de graphiques */
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Augmentation de l'ombre pour un effet de profondeur */
}

.chart-title {
    color: #333;
    font-size: 24px; /* Augmentation de la taille du titre */
    margin-top: 0;
    padding: 10px;
    text-align: center;
}

canvas {
    width: 100%;
    max-width: 800px;
    border-radius: 8px; /* Ajout de bord arrondis aux graphiques */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ajout d'une légère ombre pour un effet de profondeur */
}

/* Ajoutons un petit padding autour des sections pour la respiration */
section {
    padding: 20px;
}
