/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Conteneur principal */
#container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin: 20px;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Sections */
#container > div {
    flex: 1;
    padding: 10px;
    text-align: center;
}

/* Titre */
h3 {
    text-align: center;
    font-size: 22px;
    color: #444;
    border-bottom: 2px solid #666;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* WebGL Container */
#webGL {
    width: 50%; /* Utiliser toute la largeur de la div */
    height: 500px; /* Ajuster la hauteur comme souhaité */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ddd; /* Pour voir où est la div */
    margin:auto;
    position : relative;    
    overflow: hidden;
   
}
canvas {
    display: block;
}

/* Légende des axes */
#axes_legend {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

/* Image */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

/* Explications techniques */
h3 + p {
    font-size: 20px;
    text-align: left;
    padding-left: 60px;
}

/* Ligne de séparation */
hr {
    width: 70%;
    margin: 20px auto;
    border: 1px solid #ccc;
}


