/* CSS pour personnaliser les sections repliables */
.details-wrapper {
    margin-bottom: 20px;
  }
  
  .details-wrapper summary {
    background-color: #f8f8f8;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .details-wrapper[open] summary {
    background-color: #e0e0e0;
  }
  
  .details-wrapper .details-content {
    padding: 10px;
    border-right: 1px solid #ddd; /* left -> right */
    border-left: 1px solid #ddd; /* right -> left */
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
  }
  
  .important-question {
    background-color: #c7c1c1; /* Light grey color */
    padding: 10px;
    border-radius: 5px;
  }