/* ======================================
   FICHIER : documentation.css
   DESCRIPTION : Feuille de styles de la page documentation.html
   AUTEUR : COULAIS Tom
   DATE : 02/04/2025
   ====================================== */

.body-3{
  background-color: #F9F3E9;
}

.containerdoc {
    display: flex;
    justify-content: center;
    align-items: center; 
    margin-top: 20px; 
}

.item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 50px;
}

.dot {
    width: 25px;
    height: 25px;
    background-color: transparent; 
    border: solid #e46d26 2px; 
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #e46d26;
}

h3 {
    margin: 0; 
}

.lexiquesection {
    margin: 10px auto; 
    width: 90%;
    max-width: 90%;
    height: 85vh; 
    padding-left: 0;
    overflow-y: scroll; 
}
.lexiquesection::-webkit-scrollbar {
    width: 12px; 

  }
.textesource {
    flex-flow: column;
    width: 80vw;
    max-width: 100%;
    margin-left: auto;
    display: block;
}
  
  .lexiquesection::-webkit-scrollbar-track {
    background: gray; 
    border-radius: 12px;
  }
  
  .lexiquesection::-webkit-scrollbar-thumb {
    background-color: orange; 
    border-radius: 20px; 
  }
.lexiquesection h2{
   color: #E46C0A;
   font-size: 1.4rem;
}
.lexiquesection li{
    font-size: 1.2rem;
    margin-top: 20px;
}

.sourcessection{
    display: none;
}

.active_section{
    display: block !important;
}
.hidden_section{
    display: none !important;
}

.text-block-2 {
    direction: ltr;
    text-transform: none;
    white-space: normal;
    margin-bottom: 5px;
    margin-left: 38px;
    margin-right: auto;
    font-size: 18px;
    text-decoration: none;
  }
  
  .text-block-2.margin-bottom {
    margin-bottom: 10px;
    padding-bottom: 0;
    line-height: 25px;
  }

  .sourcesimg {
    float: none;
    clear: both;
    text-align: left;
    vertical-align: middle;
    width: 90vw;
    height: 50vh;
    margin: 10px auto 0;
    display: inline-block;
    position: static;
    inset: auto 0%;
  }

  .text-block {
    color: var(--froid);
    text-align: center;
    flex-flow: row;
    justify-content: center;
    align-items: flex-end;
    font-size: 18px;
    font-weight: 700;
    display: flex;
  }

  @media only screen and (max-width: 1366px) {
    .lexiquesection h2{
        font-size: 1.2rem;
    }
    .lexiquesection li{
      font-size: 1rem;
      margin-top: 20px;
  }
  .dot{
    width: 18px;
    height: 18px;
  }
  .containerdoc{
    align-items: center;
    margin-left: 10%;
    font-size: 1rem;
  }
}