body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #eeeeee;
}

.container {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.left-section,
.right-section {
    width: 50%;
    padding: 20px;
}

.left-section {
    text-align: left;
}

.left-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #5684fd;
}

.left-section p {
    font-size: 1.2em;
    margin-bottom: 20px;;
}

.right-section .card {
    border: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.right-section .card-body {
    padding: 30px;
}

.form-group label {
    display: none;
}

.form-control {
    border-radius: 5px;
}

.btn-primary {
    background-color: #5684fd;
    border-color: #5684fd;
}


.content {
    margin-top:15vh;
}

.section {
    padding: 50px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 20px;
    background-color: #FCFCFC;
    border-radius: 10px;

}

#back {
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 20px;
}

.titre {
    text-align: center;
}

h1 {
    color: #5684fd;
    font-size: 2.5em;
    /* Ou une autre taille plus grande que h2 */
}

.section h2 {
    color: #5684fd;
    font-size: 2.5em;
    /* Ou une autre taille plus petite que h1 */
}
.section h3 {
    color: #5684fd;
    font-size: 1.5em;
    /* Ou une autre taille plus petite que h1 */
}


.section ul {
    list-style: none;
    padding: 0;
}

.section img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.section li {
    margin-bottom: 10px;
}

.expandable .details {
    display: none;
    margin-top: 10px;
    text-align: left;
}

.suppfooter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.suppfooter .text {
    margin-bottom: 5px;
    font-size: 1.2em;
}



/* Pied de page */
.footer {
    background-color:#eeeeee;
    color: #5684fd;
    text-align: center;
    padding: 20px;
    border-top: 5px solid #5684fd;
}

.footer a {
    color: #5684fd;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

.social-media img {
    width: 30px;
    margin: 0 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-media img:hover {
    transform: scale(1.1);
}

footer a {
    color: #eeeeee;
    text-decoration: none;
}

/* Boutons */
.history-button {
    padding: 10px 20px;
    background-color: #5684fd;
    border: none;
    border-radius: 5px;
    color: #FCFCFC;
    cursor: pointer;
}


@media (max-width: 768px) { /* Adaptez la valeur si nécessaire */
    .container {
      flex-direction: column; /* Les sections s'empilent verticalement */
    }
  
    .left-section, .right-section {
      width: 100%; /* Chaque section occupe toute la largeur */
    }
  
    .content {
      margin-left: 10px;
      margin-right: 10px;
    }
  
    .section {
      margin-left: 10px;
      margin-right: 10px;
    }
  }
  
  /* Transition fluide pour le défilement */
  html {
    scroll-behavior: smooth; /* Active le défilement fluide sur toute la page */
  }