/* Styles pour le Header */
header {
    display: flex; /* Flexbox pour aligner h1 et nav horizontalement */
    align-items: center; /* Aligner verticalement au centre */
    padding: 0.5vh 1vw; /* Ajouter du padding autour */
    background-color: #333;
    color: white;
    position: fixed;
    top: 0; /* Positionner au tout en haut */
    left: 0; /* Alignement sur le bord gauche */
    width: 100%; /* Faire en sorte qu'il prenne toute la largeur */
    z-index: 1000;
    /* border: 2px solid red;*/
}

header img {
    height: 50px;
}

    header h1 {
        margin: 0;
        font-size: 1.5rem; /* Taille du titre */
        margin-right: 2rem; /* Espace � droite du titre */
    }

.header-container {
    width: 100%;
    margin-right: 3vw;
}

    header div nav {
        width: 100%;
    
    }

        header div nav ul {
            display: flex;
            justify-content: space-between;
            width: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        header div nav ul div li {
            margin: 0 15px; /* Espacement entre chaque �l�ment de la liste */
        }

            header div nav ul div li.left {
                align-self: center; /* Pousse l'�l�ment vers la gauche */
            }

            header div nav ul div li.right {
                align-self: center; /* Pousse l'�l�ment vers la droite */
            }

            header div nav ul div li a {
                text-decoration: none; /* Supprimer le soulignement des liens */
                color: white;
                font-weight: bold;
            }

            .header-dropdown {
                position: relative;
                cursor: pointer;
                
            }

.header-dropdown-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #333;
    top: 100%;
    border-radius: 12px;
    border: 1px solid #444;
    margin-top: 0.5rem;
    list-style: none;
    padding: 0.5rem 0;
    width: 25vw;
    z-index: 1000;

    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

    .header-dropdown-menu.open {
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        transform: translateY(3vh) translateX(-2vw);
    }
            
            .header-dropdown-menu li {
                display: flex;
                margin: 0;
            }

            .header-dropdown-menu li a {
                display: flex;
                padding: 0.5rem 2vw;
                
            }

            .header-dropdown-menu li:hover a {
                color: #2575fc;
            }

.arrow {
    font-size: small;
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

    .arrow.rotated {
        transform: rotate(-90deg);
    }

.nav-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hamburger {
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        font-size: 2rem;
        cursor: pointer;
        color: white;
    }

    .header-dropdown-phone {
        display: none;
    }

    .header-dropdown-menu-phone {
        display: none;
    }

@media (max-width: 640px) {

    .menu {
        display: flex !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease-in-out !important;
        flex-direction: column !important;
        list-style-type: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background-color: #333 !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        
        width: 100% !important;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1) !important;
    }

    .menu-open {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        justify-content: flex-start !important;
        margin-bottom: 10px !important;
    }

    .header-container {

    }

    header div nav ul {
        list-style-type: none;
        padding: 1vh;
        margin: 0;
        font-size: large;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        background-color: #444;
        position: absolute;
        top: 100%;
        left: 0;
        gap: 3vh;
        width: 70%;
        height: 95vh;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .header-dropdown{
        display: none !important;
    }

    /* Container général du menu mobile (ex : <ul className="header-menu-phone">) */
.header-menu-phone {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 1rem !important;
  }
  
  /* Élément cliquable qui déclenche le dropdown */
  .header-dropdown-phone {
    display: flex !important;
    text-align: end !important;
    flex-direction: column !important;
    gap: 1rem !important;
    width: 60vw;
  }

  .header-dropdown-phone.open {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 
    0 -4px 8px rgba(0, 0, 0, 0.1), 
    4px 0 8px rgba(0, 0, 0, 0.1), 
    -4px 0 8px rgba(0, 0, 0, 0.1) !important;
    margin: 5px;
    padding: 10px;
  }

  .header-dropdown-menu-phone {
    position: unset !important;
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
    display: flex !important;
    font-size: medium !important;
    transition: all 1s ease !important;
    box-shadow: none !important;
  }
  
  /* Dropdown UL */
  .header-dropdown-list-phone {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    padding-left: 1rem !important;
  }

  .header-dropdown-item-phone {
    margin: 0 !important;
    padding: 0px 15px !important;
    width: auto;
  }
  
  /* Item individuel */
  .header-dropdown-item-phone a {
    text-decoration: none !important;
    color: white !important;
    padding: 0.25rem 0 !important;
    display: block !important;
    text-align: end !important;
  }
  
  /* Optionnel : hover style */
  .header-dropdown-item-phone a:hover {
    text-decoration: underline !important;
  }

    .nav-left {
        flex-direction: column !important;
        gap: 3vh !important;
        align-items: flex-end !important;
    }

    .nav-right {
        flex-direction: column !important;
        gap: 3vh !important;
        align-items: flex-end !important;
    }

    header div nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    header div nav ul li a {
        text-decoration: none;
        color: white;
        font-weight: bold;
    }
}.language-selector {
    position: relative;
    display: inline-block;
    user-select: none;
}

.language-selector__button {
    padding: 8px 10px 5px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #3a3a3a
}

.language-selector__arrow {
    margin-left: auto;
    font-size: 0.75rem;
}

.language-selector__list {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100%;
    left: 0;
    margin: 4px 0 0;
    padding: 5px 0;
    background: #3c3c3c;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1000;
}

.language-selector__item {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: center;
    margin: 4px 7px;
    padding: 5px 3px 3px;
    border-radius: 6px;
}

    .language-selector__item:hover {
        background-color: #2575fc;
    }

.language-selector__item--selected {
    background-color: #2575fc;
    font-weight: 600;
}
/* Banni�re principale */
.home-banner {
    padding: 2vh;
    background: #333;
    border-radius: 12px;
    margin: 3vh 1vw 2vh;
    min-height: 28vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .home-banner h1 {
        font-size: 7vh;
        font-weight: bold;
        padding: 0px;
        margin: 2vh;
    }

    .home-banner .cta-button {
        margin-top: 20px;
        width: auto;
        font-size: clamp(5px, 3vh, 1.5rem); /* min, normal, max*/
    }

/* Contenu principal */
.home-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1vh 1vw;
    min-height: 50vh;
}

/* Section de gauche */
.home-left {
    background: #333; /* rgba(245, 245, 245, 0.9); */
    padding: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    flex-direction: column;
}

.home-left-phone {
    background: #333; /* rgba(245, 245, 245, 0.9); */
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 10px;
    border-top: 1px solid #ddd;
}

    .home-left-phone:first-child {
        border-top: none; /* Pas de bordure pour le premier �l�ment */
        border-top-left-radius: 10px;
    }


.home-left-item {
    flex: 1;
    position: relative;
    padding: 0;
    transition: background 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 10px;
}

    .home-left-item:first-child {
        border-top-left-radius: 10px;
    }

    .home-left-item:hover {
        background: #2a2a2a; /* #EDECFC */
    }

.home-left-text {
    font-size: 1.2em;
    font-weight: 600;
    padding: 25px 20px; /* Ajuste les marges internes du texte */
    color: #fff;/* #2d2d2d; */
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.home-left-item:hover .home-left-text {
    color: #2d2d2d;
    transform: translateX(10px); /* D�placement vers la droite uniquement pour le texte */
}

.home-left-item.active {
    color: #fff;
    background: #2a2a2a;
}

    .home-left-item.active .home-left-text {
        color: #fff;
        transform: translateX(10px); /* Le texte bouge �galement */
    }

/* Section de droite */
.home-right {
    flex: 2;
    background: #2a2a2a; /* rgba(255, 255, 255, 0.9); */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.home-right-icon {
    font-size: 4em;
    color: #2575fc; /* Couleur du gradient */
    margin-bottom: 20px;
}

.home-right-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #fff; /* #2d2d2d; */
}

.home-right-phone {
    display: none;
}

/* Footer */
footer {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    font-size: 0.9em;
    background: rgba(245, 245, 245, 0.9); /* Gris clair */
    color: #2d2d2d;
}

    footer a {
        color: #6a11cb;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
            color: #2575fc;
        }
@media (max-width: 680px) {
    .home-container {
        padding: 10px !important;
    }

   .home-banner {
        height: 80vh !important;
        text-align: center !important;
        margin: 3vh 0 2vh;
   }

   .home-banner .cta-button {
        margin: 10px !important;
   }

   .licenses-page {
     padding: 10px !important;
   }
}

@media (max-width: 680px) {
    .home-main {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 2vh 2vw !important;
        min-height: auto !important;
        background-color: #333 !important;
        border-radius: 12px !important;
    }

    /* La section gauche devient une liste verticale */
    .home-left {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        background: none !important;
        border-radius: 0 !important;
    }

    .home-left-phone {
        border-top: none;
    }

    .home-left-item {
        border: #2575fc 1px solid !important;
        text-align: center !important;
        border-radius: 10px !important;
        margin-bottom: 5px !important;
        justify-content: center !important;
        align-items: center !important;
        background-color: #2a2a2a !important;
    }

    .home-left-text {
        text-align: center !important;
        font-size: 1em !important;
        color: #fff !important;
        cursor: pointer !important;
    }

    .home-right {
        display: none !important;
    }

    .home-right-icon {
        margin-bottom: 0 !important;
    }

    .home-right-phone {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 2vw !important;
        gap: 4vw !important;
    } 
}

@media (max-width: 680px) {
     .features-container {
         padding: 2vh 3vh !important;
          margin: 10px !important;
          display: flex !important;
          flex-direction: column !important;
          align-items: center !important;
          height: auto !important;
     }

    .feature-title {
        background-color: #2a2a2a !important;
    }

     .features-tabs {
          width: 90vw !important;
          margin-bottom: 0 !important;
          margin: 0 1vw !important;
     }

     .feature-tab {
          flex-direction: column !important;
          height: auto !important;
          font-size: 17px !important;
          justify-content: flex-start !important;
          gap: 1vw !important;
          background-color: #444 !important;
     }

     .feature-tab.active {
          background-color: #2575fc !important;
          color: white !important;
          border-radius: 12px !important;
     }

     .feature-tab:hover {
          background-color: #2575fc !important;
          color: white !important;
          border-radius: 12px !important;
     }

     .feature-tab.active .feature-number{
          background-color: white !important;
          color: #2575fc !important; 
     }

     .feature-tab:hover .feature-number {
          background-color: white !important;
          color: #2575fc !important; 
      }

     .feature-buttons {
          padding: 0 !important;
          font-size: 16px !important;
     }

     .feature-number {
          position: relative !important;
          align-self: center !important;
          justify-self: center !important;
          width: 25px !important;
          height: 25px !important;
     }

     .feature-content {
          display: flex !important;
          flex-direction: column !important;
          height: auto !important;
     }

     .feature-text {
          border-right: none !important;
          text-align: center !important;   
          
     }

        .feature-text p {
            font-size: 17px !important;
            padding: 3px 0 0 !important;
            margin-bottom: 0 !important;
        }
}

/* Conteneur principal */
.howitworks {
    display: flex;
    justify-self: center;
    justify-content: center;
    align-items: center;
    height: 88vh;
    width: 97vw;
    background-color: #333;
    border-radius: 12px;
    flex-direction: column;
    color: white;
    text-align: center;
}

/* Structure interne */
.howitworks-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.howitworks-title {
    padding: 2vh;
    background-color: #444;
    border-radius: 12px;
    border: 1px solid #2575fc;
}


/* Section gauche : Visuel du cycle */
.howitworks-left-section {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid white;
    flex-direction: column;
    gap: 1vh;
    margin-bottom: 3vh;
}

/* Triangle indicateur */
.howitworks-triangle-indicator {
    position: absolute;
    top: -15%;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 25px solid red;

}

/* Cercle central */
.howitworks-central-circle {
    position: absolute;
    width: 25vh;
    height: 25vh;
    background-color: #2575fc;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    position: relative;
    z-index: 10;
}

/* Conteneur pour les cercles autour */
.howitworks-circle-container {
    position: absolute;
    width: 50vh;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border : 1px solid white;
}

/* Cercles des �tapes */
.howitworks-step-circle {
    position: absolute;
    width: 15vh;
    height: 15vh;
    display: flex;
    background-color: #444;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.5s, transform 0.5s;
    flex-direction: column;
    justify-content: center;
    gap: 1.5vh;
    padding: 1vh;
    cursor: pointer;
}
    .howitworks-step-circle:hover {
        background-color: #2575fc;
        color: white;
    }

    .howitworks-step-circle span {
        display: flex;
        background-color: #2575fc;
        border-radius: 50%;
        height: 3vh;
        width: 3vh;
        justify-content: center; /* Centre horizontalement */
        align-items: center; /* Centre verticalement */
        font-weight: bold;
        color: white;
    }

    .howitworks-step-circle:hover span {
        background-color: white;
        color: #2575fc;
    }

    /* �tape active */
    .howitworks-step-circle.active {
        background-color: #2575fc;
        color: white;
    }

    .howitworks-step-circle.active span {
        background-color: white;
        color: #2575fc;
    }

/* Section droite : Texte explicatif */
.howitworks-right-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    padding-left: 5vw;
    padding-right: 3vw;
}

/* Titre de l'�tape */
.howitworks-step-title {
    font-weight: bold;
    align-self: center;
    display: flex;
}

.howitworks-step-description {
    display: flex;
    align-self: flex-start;
    text-align: start;
    
}@media (max-width: 768px) {
    .howitworks {
        display: flex;
        width: 95vw !important;
        flex-direction: column !important;
        height: auto !important;
    }

    .howitworks-title {
        background-color: #2a2a2a !important;
        border: 1px solid #2575fc !important;
        margin: 10px !important;
    }

    .howitworks-left-section {
        border-right: none !important;
        width: 95% !important;
    }

    .howitworks-central-circle {
        display: none !important;
    }

    .howitworks-content {
        flex-direction: column !important;
        align-items: center !important;
    }

    
    .howitworks-circle-container {
        display: flex !important;
        position: relative !important;
        width: 100% !important;
        gap: 2vh !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        height: auto !important;
        transition: none !important;
        transform: none !important; /* Suppression de la rotation */
        border: none !important; /* Suppression du cercle */
    }

    /* Modification des cercles en rectangles */
    .howitworks-step-circle {
        position: relative !important;
        height: auto !important;
        border-radius: 8px !important; /* L�g�rement arrondi */
        background-color: #444 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        flex-direction: row !important;
        padding: 1.5vh 3vw !important;
        transform: none !important;
        min-height: 8vh !important;
    }

        /* Num�ro du step */
        .howitworks-step-circle span {
            height: 6vw !important;
            aspect-ratio: 1/1 !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            font-weight: bold !important;
            background-color: #2575fc !important;
            color: white !important;
            border-radius: 50% !important;
        }

        .howitworks-step-circle.active {
            background-color: #2575fc !important;
            color: white !important;
        }

            .howitworks-step-circle.active span {
                background-color: white !important;
                color: #2575fc !important;
            }

    /* La section droite s'affiche en bas */
    .howitworks-right-section {
        width: 90% !important;
        text-align: center !important;
        align-items: center !important;
        margin-bottom: 1vh !important;
    }

    .howitworks-step-title {
        display: none !important;
    }

    .howitworks-step-description {
        max-width: 100% !important;
        margin: 3vw !important;
    }
}
.features-container {
    margin: 1vw 1vw;
    padding: 3vh;
    text-align: center;
    background-color: #333;
    border-radius: 12px;
    height: 82vh;
}

.feature-title {
    width: auto;
    color: white;
    padding: 2vh;
    background-color: #444;
    border-radius: 12px;
    border: 1px solid #2575fc;
    margin: 0 0 3vh;
    display: flex;
    justify-self: center;
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-bottom: 2vh;
}

.feature-tab {
    display: flex;
    align-items: center;
    border: none;
    
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    padding: 1vw;
    transition: color 0.3s;
    border-radius: 12px;
}

    .feature-buttons {
        font-size: 18px;
        font-weight: bold;
        background: none;
        border: none;
        transition: none;
    }

    .feature-tab .feature-number {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background: #2575fc;
        color: white;
        border-radius: 50%;
        font-weight: bold;
    }

    .feature-tab.active {
        color: #2575fc;
    }

    .feature-tab:hover .feature-number {
        background-color: white;
        color: #2575fc;
    }

    .feature-tab:hover {
        background-color: #2575fc;
        color: white;
    }

    .feature-tab.active:hover .feature-number {
        background-color: white;
        color: #2575fc;
    }

    .feature-tab.active:hover {
        color: white;
    }

.feature-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 58vh;
    
}

.feature-text {
    display: flex;
    flex-direction:column;
    flex: 1;
    text-align: left;
    border-right: 2px solid #fff;
    padding-right: 20px;
    height: 100%;
    justify-content: center;
}

    .feature-text p {
        font-size: 16px;
        color: #fff;
        padding: 10px 0 0;
    }

.feature-image {
    flex: 0 0 65%;
    text-align: center;
}

    .feature-image img {
        max-width: 100%;
        max-height: 58vh;
        width: auto;
        height: auto;
        border-radius: 8px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
/* G�n�ral pour la page */
.licenses-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Hauteur pleine page */
    padding: 20px;
}

/* Carte contenant tout */
.licenses-card {
    background-color: #333; /* Fond de la carte */
    color: #f0f0f0; /* Texte clair pour contraste */
    padding: 10px 40px 40px;
    border-radius: 12px; /* Coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Ombre douce */
    min-width: 80vh; /* Limite en largeur */
    width: 100%; /* S'�tend sur toute la largeur disponible */
    text-align: center; /* Centrer le contenu */
}

    /* Titre */
    .licenses-card h1 {
        margin-bottom: 20px;
        font-size: 2rem;
    }

    /* Paragraphe */
    .licenses-card.p {
        margin-top: 20px;
        line-height: 1.6;
        font-size: 1rem;
        text-align: justify; /* Alignement justifi� pour meilleure lisibilit� */
    }
@media (max-width: 640px) {
   .licenses-page {
     padding: 10px !important;
   }

   .licenses-card {
        display: flex !important;
        width: 100% !important;
        min-width: 0px !important;
        flex-wrap: wrap !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 0px !important;
    }

    .licenses-card p {
        padding: 0 15px !important;
    }

    .container-pricing {
        min-width: 88vw !important;
    }

   .pricing-toggle {
        flex-wrap: wrap !important;
    }

    .pricing-toggle button {
        font-size: 12px !important;
    }

    .pricing-cards {
        width: 80vw !important;
        justify-self: center !important;
    }

    .card {
        width: 80vw !important;
        min-width: 80vw !important;
    }

    

    .feature-list {
        padding: 0 !important;
    }
        .feature-list li {
            text-align: center !important;
            padding: 5px 0 !important;
            font-size: 1.1rem !important;
        }

        .feature-list-enterprise li {
            text-align: center !important;
            font-size: 1.1rem !important;
        }
}/* Toggle Buttons */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
}

    .pricing-toggle button {
        background-color: #444;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 8px;
        font-weight: bold;
    }

        .pricing-toggle button.active {
            background-color: #0066ff;
        }

/* Conteneur pour le bouton annuel et son badge */
.yearly-button-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Ajout de styles pour le badge de réduction */
.yearly-badge {
    position: static;
    margin-left: 10px;
    padding: 4px 8px;
    background-color: rgba(0, 102, 255, 0.2);
    border-radius: 4px;
    font-size: 0.8rem;
    color: #0066ff;
    white-space: nowrap;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #333;
    border-radius: 12px;
    flex: 1 1 calc(20% - 20px);
    width: 12vw;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
}

    .card:hover {
        transform: translateY(-5px);
        transition: all 0.5s ease;
        background-color: #2a2a2a;
    }

    .card.popular {
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .card.popular:hover {
        background-color: #2a2a2a;
    }

.badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, .2);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 30px 0 0;
    padding: 0 1vh;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 15px 0;
    color: #2575fc;
}

.feature-list {
    list-style-type: none;
    margin: 10px 0;
    padding: 0 1vw 0 5vw;
}

    .feature-list li {
        text-align: left;
        padding: 5px 0;
        font-size: 0.9rem;
    }

.feature-list-enterprise {
    list-style-type: none;
    margin: 10px 0;
    padding: 0 1vw 0 3.5vw;
}

    .feature-list-enterprise li {
        text-align: left;
        padding: 5px 0;
        font-size: 0.9rem;
    }

.subscribe-btn {
    background-color: #0066ff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    margin: 0 0 20px;
}

.subscribe-btn a {
    color: #fff;
    font-weight: bold;
}

    .subscribe-btn a:hover {
        color: #fff;
    }

.price-container {
    display: inline-block;
    position: relative;
    font-size: 4rem;
    font-weight: bold;
}

.currency {
    position: absolute;
    top: 0;
    left: -1rem;
    font-size: 1rem;
    line-height: 5.5;
}

.price {
    display: inline-block;
}

.period {
    position: absolute;
    bottom: 0;
    font-size: 1rem;
    line-height: 3.5;
}.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    justify-content: flex-start;
    padding-bottom: 5vh;
    height: auto;
    width: 97vw;
    background-color: #333;
    border-radius: 12px;
    color: white;
}

.faq-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #2575fc;
    border-radius: 12px;
    background-color: #444;
    padding: 2vh;
}

.faq-card {
    display: flex;
    flex-direction: column;
    width: 80%;
    padding: 2vh 5vw;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
    display: flex;
    flex-direction: column;
    
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-question {
    background: none;
    border: none;
    font-size: 1.2rem;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
}

    .faq-question:hover {
        color: #2575fc;
        transform: translateY(-2px);
    }

.faq-item.open .faq-question {
    border-bottom: 1px dashed #ccc;
}

.faq-answer {
    padding: 0 15px;
    font-size: 1rem;
    background-color: #444;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
    
:root {
    --footer-text: #f8f9fa; /* Texte clair */
}

.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-link {
    color: var(--footer-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .footer-link:hover {
        color: var(--footer-link-hover);
    }

.footer-contact {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-contact-item {
    color: var(--footer-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}

    .footer-contact-item:hover {
        color: var(--footer-link-hover);
        transform: scale(1.1);
    }

.footer-icon {
    font-size: 1.2rem;
}

.footer-copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.8;
}
/* Styles de la page de connexion */
.login-page {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Carte de connexion */
.auth-card {
    background-color: #333; /* #2a2a2a */
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 400px;
    color: #f0f0f0; /* Couleur du texte */
}

    .auth-card h1 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #ffffff; /* Titre bien contrast� */
    }

@media (max-width: 640px) {
    .auth-card {
        width: 85vw;
        padding: 2vh 4vw;
        margin: 30px 40px;
    }
}

/* Champs de formulaire */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: #f0f0f0; /* Texte clair */
    }

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #f0f0f0;
    font-size: 14px;
    box-sizing: border-box;
}

    input[type="email"]:focus,
    input[type="password"]:focus {
        outline: none;
        border-color: #2575fc; /* Couleur de focus */
    }

/* Bouton de connexion */
button[type="submit"] {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #2575fc; /* Couleur principale */
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    button[type="submit"]:hover {
        background-color: #1e63d0; /* Couleur au survol */
    }

/* Mot de passe oubli� */
.forgot-password {
    margin-top: 10px;
    font-size: 14px;
}

    .forgot-password a {
        color: #2575fc;
        text-decoration: none;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }
/* From Uiverse.io by xXJollyHAKERXx */
.wrapper {
    background-color: #2a2a2a;
    border-radius: 12px; /* Coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Ombre douce */
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 88vh;
    width: 98vw;

    margin: 2vh 1vw;
}

.spinner {
    
    background-image: linear-gradient(rgb(186, 66, 255) 35%,rgb(0, 225, 255));
    width: 120px;
    height: 120px;
    animation: spinning82341 1.7s linear infinite;
    text-align: center;
    border-radius: 60px;
    filter: blur(1px);
    box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px rgb(0, 225, 255);
}

.spinner1 {
    background-color: rgb(36, 36, 36);
    width: 120px;
    height: 120px;
    border-radius: 60px;
    filter: blur(10px);
}

@keyframes spinning82341 {
    to {
        transform: rotate(360deg);
    }
}
.signup-container {
    display: flex;
    justify-content: center;
    padding: 2vh;
    flex-wrap: wrap;
    height: 88vh;
}

.signup-card {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    background-color: #333;
    border-radius: 12px;
    color: #fff;
    padding: 3vh;
    height: fit-content;
}

.register-datas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.signup-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.licences-title {
    font-size: 1.5rem;
}

.signup-offer-column {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1vh;
    align-items: center;
}

.offer-title {
    display: flex;
    gap: 2vh;
    align-items: center;
    font-size: 1.5rem;
    text-align: center;
}

.signup-price-toggle {
    background: #444;
    border-radius: 2rem;
    display: flex;
    overflow: hidden;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

    .signup-price-toggle span {
        padding: 0.5rem 1rem;
        cursor: pointer;
    }

    .signup-price-toggle .active {
        background-color: #2575fc;
        
        font-weight: bold;
    }

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

    .carousel-container button {
        background-color: transparent;
        color: #2575fc;
    }

    .carousel-container button:hover {
        background-color: transparent;
    }

.carousel-license-card {
    background-color: #444;
    border-radius: 1rem;
    padding: 0.5rem 1.5rem;
    width: 250px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.caroussel-card-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.caroussel-caracteristics {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .caroussel-caracteristics p {
        display: flex;
        margin: 1vh;
        align-items: center;
        justify-content: center;
        gap: 1vh;
    }

    .signup-license-price {
        font-weight: bold;
        color: #2575fc;
    }

.signup-form-column {
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: #333;
    color: #fff;
    padding: 2rem 0 2rem 2rem;
    gap: 2vh;
}

.signup-form-group {
    display: flex;
    flex-direction: column;
}

.signup-form-group label {
    margin-bottom: 1vh;
}

.register-button,
.register-button-submited {
    display: flex;
    justify-content: center; /* centre horizontalement le texte */
    align-items: center;
    justify-self: center;
    max-width: 50%;
    padding: 0.75rem;
    margin-top: 1rem;
    background-color: #2575fc;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.register-button-submited {
    background-color: #aaa;
    cursor: not-allowed;
}

.error-message {
    color: #c00;
    font-size: 1rem;
    margin-top: 0.5rem;
    display: flex;
    justify-self: center;
}

.captcha-wrapper {
    align-self: center;
}

.free-trial {
    min-height: 18px;
}

@media (max-width: 640px) {
    .signup-container {
        height: auto !important;
        padding: 2vw !important;  
    }

    .signup-card {
        padding: 2vh 2vw !important;
        width: 96vw !important;
    }

    .signup-form-column {
        padding: 2vw !important;
    }

    .free-trial {
        display: flex !important;
        flex-direction: column !important;
        gap: 2vh !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .carousel-license-card {
        padding: 2vw !important;
    }

    .carousel-container button {
        padding: 0 !important;
        margin: 1vw;
    }
}.forgotten-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.forgot-password-container {
    background-color: #333; /* #2a2a2a */
    padding: 10px 40px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 400px;
    color: #f0f0f0;
}

.forgot-password-container form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.forgot-password-container label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Espace entre le label et l'input */
    margin-bottom: 15px;
}

.input-group label {
    text-align: left;
}

.input-group input {
    flex: 1; /* L'input prend tout l'espace restant */
}.apps {
    display: flex;
    justify-content: center;
 
    min-height: 88vh; /* Hauteur pleine page */
    padding: 2vh 1vw;
}

.app-container {
    font-family: Arial, sans-serif;
}

.desktop-only {
    display: none;
}

@media (max-width: 640px) {

    .desktop-only {
        display: flex !important;
        background-color: #3d3d3d !important;
        border-radius: 12px !important;
        color: white !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 84vw !important;
        height: 50% !important;
        margin: 20vh 2vw;
        padding: 0 5vw;
    }

    .content-container {
        display: none !important;
    }
}


.content-container {
    display: flex;
    color: #f0f0f0; /* Texte clair pour contraste */
    border-radius: 12px; /* Coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Ombre douce */
    min-width: 98vw;
    text-align: center; /* Centrer le contenu */
    height: 100%;
}

.sidebar {
    display: flex;
    background-color: #2a2a2a;
    color: #fff;
    padding: 1rem;
    min-width: 15vw;
    display: flex;
    flex-direction: column;
    border-start-start-radius: 12px;
    border-end-start-radius: 12px;
}

.sidebar-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #fff; /* Adaptez la couleur en fonction de votre th�me */
}

.sidebar-item {
    padding: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 5px;
}

    .sidebar-item:hover {
        background-color: #444;
    }

    .active {
        background-color: #444;
    }

.sidebar-title-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-help-button {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 50px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 12vw;
    overflow: hidden;
    z-index: 100;
}

.sidebar-help-icon {
    display: flex;
    align-items: center;
    font-size: 20px;
    min-width: 20px;
    margin-left: 2px;
}

.sidebar-help-text {
    opacity: 0;
    white-space: nowrap;
    color: white;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    margin-left: 8px;
}

.sidebar-help-button:hover {
    transform: none;
    width: auto;
    padding: 8px 16px;
}

.sidebar-help-button:hover .sidebar-help-text {
    opacity: 1;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #333;
    border-start-end-radius: 12px;
    border-end-end-radius: 12px;
    position: relative;
}

.menu-bar {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    /*background-color: #ddd;*/
}

    .menu-bar button {
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
    }

.menu-display {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-reload-datas {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-size: 14px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-reload-datas svg {
    animation: spin 1.5s linear infinite;
}

.report-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    color: #fff;
}

    .report-table thead th {
        font-weight: bold;
    }
.sortable-header {
    position: relative;
    padding-right: 20px; /* pour éviter que le texte touche l'icône */
}

.sort-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem; /* ou adapte selon tes besoins */
    pointer-events: none; /* pour que les clics ne gênent pas le tri */
}

    .report-table th,
    .report-table td {
        border: 1px solid #444; 
        padding: 8px;
        text-align: left;
        color: #fff;
    }

    .report-table th {
        background-color: #555;
        color: #fff;
    }

    .report-table tr:nth-child(even) {
        background-color: #444;
    }

    .report-table tr:hover {
        background-color: #555;
    }

.element {
    color: white;
    overflow-wrap: break-word;
}

.long-text {
    overflow-wrap: break-word;
}

.violation-container {
    display: flex;
    align-items: stretch;
    gap: 10px;
    justify-content: center;
}

.chart-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .chart-container > div {
        margin-bottom: 10px; /* Espace entre le texte et le graphique */
    }

.line-chart-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%; /* Si tu veux que le graphique remplisse enti�rement le conteneur */
}

.global-input {
    display: flex;
    width: 300px;
    height: 4vh;
    max-height: 35px;
    padding: 0 16px;
    border-radius: 5px;
    background-color: #f5f5f5;
    border: 1px solid #d1d1d1;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Transition douce pour focus */
}

    .global-input:focus {
        outline: none;
        border-color: #2575fc; /* Couleur de bordure au focus */
        box-shadow: 0 0 8px rgba(37, 117, 252, 0.3); /* Ombre douce autour de l'input */
    }


.content-apps-nodata {
    background-color: #3d3d3d;
    border-radius: 12px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}.doc-content-container {
    display: flex;
    color: #f0f0f0; /* Texte clair pour contraste */
    border-radius: 12px; /* Coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Ombre douce */
    max-width: 100%; 
    text-align: center; /* Centrer le contenu */
}

.doc-main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #333;
    border-start-end-radius: 12px;
    border-end-end-radius: 12px;
    position: relative;
    max-width: 76vw;
}

.doc {
    margin: 20px;
    text-align: left
}

.doc h1 {
    color: #2575fc;
}

.doc h3 {
    color: #2575fc;
}

.doc h4 {
    text-decoration: underline;
}

.doc-pre {
    background: #f4f4f4;
    padding: 10px;
    color: black;
    border-radius: 5px;
}

.doc-flex {
    display: flex;
}

.doc-lang-selector {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: none !important;
    font-weight: normal;
    color: #fff !important;
    transform: none !important;
}

.doc-lang-selector-selected {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    border-bottom: 3px solid #007bff;
    background: none !important;
    font-weight: bold;
    color: #007bff !important;
    transform: none !important;
}@media (max-width: 640px) {
    .doc-content-container {
        flex-direction: column !important;
        width: 94vw !important;
        justify-content: center;
    }

    .doc-content-container .sidebar {
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
    }

    .doc-content-container .doc-main-content {
        border-top-right-radius: 0px;
        border-bottom-left-radius: 12px;
    }

    .doc-content-container .doc-main-content .menu-display {
        margin-top: 0;
        padding: 0;
    }

    .doc-main-content {
        max-width: none;
    }

    .doc-flex {
        flex-wrap: wrap;
        justify-content: space-around;
    }
}.header-scanner-container {
  display: flex;
  padding: 3vh 1vw;
  color: white;
}

.header-scanner-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #333;
  padding: 32px;
  border-radius: 12px;
  width: 98vw;
  min-height: 77vh;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.header-scanner-input-group {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    width: 40vw;
}

.header-scanner-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.header-scanner-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #2575fc;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.error-card {
    display: flex;
    align-items: flex-start;
    background-color: #ffe5e5;
    border-left: 4px solid #ff4d4f;
    padding: 12px 16px;
    border-radius: 8px;
    color: #2d2d2d;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.error-card-content p {
    margin: 4px 0;
    font-size: 14px;
    display: flex; /* Ajout� */
    align-items: center; /* Ajout� */
    gap: 4px; /* Optionnel : petit espace entre "Domaine :" et la valeur */
}

.error-card-content strong {
    display: block;
}

.header-scanner-note {
  font-size: 14px;
  color: white;
  margin-bottom: 16px;
}

.header-scanner-description {
  font-size: 1rem;
}

.header-scanner-description p {
  margin: 10px 0;
}

.header-scanner-description code {
  background-color: #3c3c3c;
  padding: 2px 4px;
  border-radius: 4px;
  font-family: monospace;
}

.header-scanner-result {
  max-width: 80vw;
}

.header-scanner-result-table {
  border-collapse: collapse;
  margin-top: 1rem;
}

.header-scanner-result-table th,
.header-scanner-result-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #666;
  text-align: left;
  font-size: 1rem;
  overflow-wrap: break-word;
}

.long-td {
  max-width: 35vw;
}

.short-td {
  max-width: 18vw;
}

.header-scanner-result-table th {
  background-color: #444;
  font-weight: 600;
}

.header-scanner-result-table thead tr :first-child {
  border-start-start-radius: 12px;
}

.header-scanner-result-table thead tr :last-child {
  border-start-end-radius: 12px;
}

.header-scanner-headerlist {
  padding-left: 20px;
  margin-top: 16px;
  color: white;
}

.header-scanner-headerlist li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.header-scanner-summary-card {
  background-color: #2a2a2a;
  padding: 2vh;
  border-radius: 10px;
  margin-bottom: 20px;
  color: white;
}

.header-scanner-summary-title {
  margin-top: 0;
  font-size: 30px;
  border-block-end: 1px solid white;
}

.header-scanner-summary-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
  margin: 0;
  gap: 2vh;
}

.header-scanner-summary-containter {
  display: flex;
  flex-direction: row;
  gap: 2vw;
}

.header-scanner-summary-containter-right {
  display: flex;
  align-items: center;
}

.header-scanner-summary-containter-left {
  min-width: 25vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  min-height: 20vh;
  justify-content: center;
  align-items: center;
  border-right: 1px solid white;
}

.header-scanner-summary-container-left-row {
    display: flex;
    flex-direction: row;
    /*padding-right: 2vw;*/
    gap: 2vw;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.header-scanner-label {
  min-width: 8vw;
  text-align: right;
  font-weight: bold;
  font-size: 20px;
}

.header-scanner-value {
    flex: 1;
    padding-right: 1.5vw;
    font-size: 20px;
}

.header-scanner-summary-item {
  margin-bottom: 6px;
  font-size: 15px;
}

.header-scanner-result-context {
  display: flex;
  font-size: 20px;
}

.header-scanner-summary-items {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.header-fault-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
}

.header-fault-tag.tab-tag {
  max-width: min-content;
}

.header-fault-tag.green {
  background-color: #c8f7c5;
  color: #267a2b;
}

.header-fault-tag.red {
  background-color: #f7c5c5;
  color: #8b2e2e;
}

.header-fault-tag.grey {
  background-color: #e0e0e0;
  color: #333;
}
.header-fault-tag.orange {
  background-color: #ffe1b3;
  color: #a65a00;
}

.header-scanner-summary-containter-grade {
    display: flex;
    justify-self: center;
    justify-content: center;
    align-self: center;
    align-items: center;
    text-align: center;
    background-color: red;
    border-radius: 12px;
    padding: 2vh;
    min-height: 150px;
    aspect-ratio: 1 / 1;
    font-size: 7rem;
    font-style: italic;
}

    .header-scanner-summary-containter-grade.red {
        background-color: #F44336;
        color: #fff;
    }

    .header-scanner-summary-containter-grade.green {
        background-color: #4CAF50;
        color: #fff;
        /*border: 4px solid #267a2b;*/
    }

    .header-scanner-summary-containter-grade.orange {
        background-color: #FF9800;
        color: #fff;
    }@media (max-width: 680px) {

    .header-scanner-card {
        padding: 2vh !important;
    }

    .header-scanner-description {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .header-scanner-result {
        max-width: none !important;
    }

    .header-scanner-summary-containter {
        flex-direction: column !important;
    }

    .header-scanner-summary-containter-left {
        border-right: none !important;
    }

    .header-scanner-label {
        text-align: unset !important;
    }

    .header-scanner-result-table thead tr :nth-child(2) {
        border-start-end-radius: 12px;
    }

    .long-td {
        display: none !important;
    }

    .short-td {
        max-width: none;
    }
}
.profile-team-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 100vw;
    max-height: 80vh;
    column-gap: 1vw; /* Espacement horizontal */
    padding: 2vh;
}

.left-container {
    display: flex;
    flex-direction: column;
    width: 35vw;
    gap: 1.5vh;
}

.right-container {
    display: flex;
    flex-direction: column;
    width: 60vw;
}

.team-info {
    background-color: #333;
    padding: 0px 16px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.team-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.members-card {
    background-color: #333;
    padding: 0px 20px 15px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .members-card h2 {
        font-size: 24px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
        .members-card h2 .add-icon {
            cursor: pointer;
            color: #2575fc;
            transition: color 0.2s ease-in-out;
        }

            .members-card h2 .add-icon:hover {
                color: #1e60d8;
            }

    .members-card table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
    }

    .members-card th, .members-card td {
        padding: 14px;
        border: 1px solid #444;
        text-align: left;
        border-bottom: 1px solid #444;
    }

    .members-card th {
        background-color: #3b3b3b;
        color: #fff;
        font-weight: bold;
    }

    .members-card td {
        background-color: #2e2e2e;
        color: #ddd;
    }

    .members-card tr:hover td {
        background-color: #353535;
        color: #fff;
        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    }



.change-password {
    background-color: #333;
    padding: 0px 16px 16px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.change-password-message {
    color: white;
    text-align: center;
}

.setup-section {
    background-color: #333;
    padding: 0px 16px 16px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

    /* Titre */
    .setup-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

.not-valid-email {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.not-valid-email-txt {
    margin: 0;
    flex: 1;
}

.not-valid-email-btn {
    margin-left: 20px;
    padding: 0.3em 0.8em !important;
}

/* Style deslments de headers */
.header-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: white;
}

    .header-item span {
        flex: 0 0 150px;
        font-weight: bold;
        color: white;
    }

    .header-item code {
        flex: 1;
        background-color: #3c3c3c;
        padding: 5px 10px;
        border-radius: 5px;
        margin-right: 10px;
        word-break: break-all;
        color: white;
    }

    .header-item button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

        .header-item button:hover {
            background-color: #0056b3;
        }

.application-list {
    background-color: #333;
    padding: 0px 16px 16px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5vh;
}

    .team-info h2, .setup-section h2, .change-password h2, .application-list h2 {
        font-size: 1.5em;
        color: rgba(255, 255, 255, 0.87);
    }

.team-info p, .setup-section p {
    color: rgba(255, 255, 255, 0.87);
}

.change-password-form input, .change-password-form button {
    width: 100%;
    margin-top: 8px;
}

.change-password-form label {
    padding: 10px 0px 0px;
    color: #fff;
}

.delete-button {
    color: red;
    background-color: #333
}

.active-button {
    color: green;
    background-color: #333;
}

.desactivate-button {
    color: red;
    background-color: #333;
}

.add-btn {
    color: #2575fc;
    position: relative;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}


    .add-btn:hover {
        color: #1e63d8;
        transform: scale(1.1);
    }

.add-btn-animation {
    animation: glow-box-shadow 2s infinite alternate;
}
@keyframes glow-box-shadow {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.application-list h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.application-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    .application-table th, .application-table td {
        padding: 8px;
        border: 1px solid #555;
        text-align: center;
        color: rgba(255, 255, 255, 0.87);
    }

.edit-button {
    background: none;
    border: none;
    color: #646cff;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s;
}

    .edit-button:hover {
        color: #535bf2;
    }

.button-change-plan {
    padding: 0.3em 0.8em;
    margin-left: auto;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Assure que le modal est au-dessus des autres �l�ments */
}

.modal-content {
    background-color: #2d2d2d; /* Couleur de fond du modal */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre pour l'effet de profondeur */
    width: 90%;
    max-width: 400px; /* Largeur maximale */
    text-align: center;
}

    .modal-content h3 {
        margin-bottom: 15px;
        font-size: 18px;
        color: #fff;
        margin-top: 0px;
    }

.modal-input-group {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

    .modal-input-group input {
        flex: 1;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        outline: none;
        margin-right: 10px;
        transition: border-color 0.3s ease;
        color: #2d2d2d; /* Couleur du texte */
        background-color: #ffffff;
    }

        .modal-input-group input:focus {
            border-color: #2575fc; /* Couleur de mise en valeur au focus */
        }

    .modal-input-group button {
        background-color: #2575fc; /* Vert pour le bouton */
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

        .modal-input-group button:hover {
            background-color: #1e63d8; /* L�g�rement plus fonc� au survol */
        }

        .modal-input-group button svg {
            font-size: 20px;
        }

        .modal-error {
            padding: 10px 0px 0px;
            color: red;
            justify-content: flex-start;
            align-items: flex-start;
        }

.help-button {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 50px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.help-icon {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-left: 2px;
    min-width: 20px;
}

.help-text {
    opacity: 0;
    white-space: nowrap;
    color: white;
    font-size: 0.9rem;
    transition: opacity 0.7s ease;
    margin-left: 8px;
}

.help-button:hover {
    transform: none;
    width: auto;
    padding: 8px 16px;
}

.help-button:hover .help-text {
    opacity: 1;
}
@media (max-width: 640px) {
    .profile-team-container {
        justify-content: center !important;
    }

    .left-container {
        width: auto !important;
        padding: 10px !important;
    }

    .members-card th, .members-card td {
        padding: 12px;
    }

    .right-container {
        width: 94vw !important;
    }

    .application-table {
        td:nth-child(3),
        th:nth-child(3) {
                display: none; /* Cache la 3ème colonne */
        };
        font-size: 15px;
    }

    .application-table th, .application-table td {
        padding: 4px;
    }

    .setup-section {
        display: flex;
        flex-direction: column;
        width: auto;
    }

    .setup-section p {
        display: flex;
    }

    .header-item {
        flex-direction: column;
        gap: 10px;
        
    }

    .header-item span {
        flex: 1;
    }

    
}.csp-maker-menu {
    padding: 0px 20px 20px;
}

.csp-maker-filters {
    display: flex;
    gap: 1vh;
    margin-bottom: 7px;
    font-size: 1rem;
    align-items: center;
}

.csp-maker-filters button {
    height: 5vh;
    font-size: 1rem;
}

.selected-button-area {
    color: #2575fc;
    background-color: white;
}

    .selected-button-area:hover {
        color: #2575fc;
        background-color: white;
    }

.policy-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .policy-header label {
        font-weight: bold;
        font-size: 22px
    }

.policy-input {
    flex: 1;
    padding: 8px;
    font-size: 16px;
    border-radius: 8px;
}

.copy-button {
    padding: 8px 12px;
    background-color: #2575fc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .copy-button:hover {
        background-color: #2575fc;
    }

.columns-container {
    display: flex;
    gap: 20px;
}

.column-left {
    flex: 1; /* 1/3 de l'espace */
    border-right: 1px solid #ccc;
    padding-right: 10px;
}

/* Conteneur principal en Flexbox */
.left-column {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* Espace entre les colonnes */
}

/* Conteneur pour chaque directive */
.directive-container {
    /* Trois colonnes ajustables */
    box-sizing: border-box;
    margin-bottom: 1rem;
    text-align: left;
}

/* Conteneur pour les URIs associ�s � une directive */
.uris-container {
    padding-left: 1rem;
    margin-top: 0.5rem;
}

/* Style pour chaque URI */
.uri-item {
    margin-bottom: 0.5rem;
}

.column-right {
    flex: 2; /* 2/3 de l'espace */
    padding-left: 10px;
}

.checkbox-group div {
    margin-bottom: 10px;
}

.reports-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    color: #fff; /* Texte blanc pour contraster avec le fond sombre */
}

    .reports-table th,
    .reports-table td {
        border: 1px solid #444; /* Bordures adapt�es � un fond sombre */
        padding: 8px;
        text-align: left;
    }

    .reports-table th {
        background-color: #555; /* Fond plus clair pour diff�rencier les en-t�tes */
        font-weight: bold;
        color: #fff; /* Assure que le texte reste lisible */
    }

    .reports-table tr:nth-child(even) {
        background-color: #444; /* Lignes altern�es pour un effet visuel agr�able */
    }

    .reports-table tr:hover {
        background-color: #555; /* Surbrillance au survol */
    }
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.container {
    display: flex;
    align-items: center;
    gap: 1vw;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.checkmark {
    position: relative;
    top: 0;
    left: 0;
    font-size: 9px;
    height: 1.6em;
    width: 1.6em;
    border-radius: 20%;
    background: #ffeded38;
    transition: all 0.2s ease;
    opacity: 0.4;
}

.container input:checked ~ .checkmark {
    background: #2575fc;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 0.61em;
    top: 0.43em;
    width: 0.25em;
    height: 0.5em;
    border: solid rgb(255, 255, 255);
    border-width: 0 0.15em 0.15em 0;
    transform: rotate(45deg);
}
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	color: black;
	background: none;
	text-shadow: 0 1px white;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	text-shadow: none;
	background: #b3d4fc;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: #b3d4fc;
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #f5f2f0;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.token.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #9a6e3a;
	/* This background color was intended by the author of this theme. */
	background: hsla(0, 0%, 100%, .5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function,
.token.class-name {
	color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
	color: #e90;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}
.admin-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Jusqu'� 4 cartes par ligne */
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.admin-panel-item {
    background-color: #1a1a1a; /* Couleur de fond de la carte */
    color: rgba(255, 255, 255, 0.87); /* Couleur de texte */
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    padding: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Ombre pour un effet de carte */
}

    .admin-panel-item:hover {
        background-color: #333333; /* Couleur plus claire au survol */
        transform: translateY(-5px); /* L�ger soul�vement au survol */
        border-radius: 12px; /* Accentuation des bords arrondis */
    }

.admin-card-content {
    font-size: 1.2em;
    font-weight: 500;
    padding: 10px 0;
}
.user-management {
    font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
    padding: 1rem;
    background-color: #242424; /* Fond sombre selon ton th�me */
    color: rgba(255, 255, 255, 0.87); /* Couleur de texte pour une meilleure lisibilit� */
}

h1 {
    text-align: center;
    color: #fff; /* Couleur claire pour le titre */
    margin-bottom: 20px;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.87); /* Texte blanc semi-transparent pour la table */
}

    .user-table th, .user-table td {
        padding: 12px;
        border: 1px solid #333; /* Bordure plus fonc�e pour correspondre � la palette de ton th�me */
        text-align: center;
    }

    .user-table th {
        background-color: #333; /* Fond fonc� pour les en-t�tes */
        color: #fff; /* Texte blanc pour les en-t�tes */
    }

    .user-table tr:nth-child(even) {
        background-color: #333; /* Fond sombre pour les lignes paires */
    }

    .user-table tr:hover {
        background-color: #444; /* L�g�re variation de la couleur de fond au survol */
    }

.actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 10px;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.87); /* Couleur de texte claire pour les boutons */
    transition: color 0.2s, transform 0.2s; /* Ajout d'une transition pour l'animation */
}

    .action-btn:hover {
        color: #646cff; /* Utilisation de la couleur de survol selon ton th�me */
        transform: scale(1.1); /* L�g�re augmentation de taille au survol */
    }

.delete {
    color: #d9534f; /* Couleur rouge pour le bouton supprimer */
}

    .delete:hover {
        color: #c9302c; /* Couleur rouge plus fonc�e au survol */
        transform: scale(1.1); /* Animation d'agrandissement */
    }
.team-management {
    font-family: Arial, sans-serif;
    padding: 20px;
    color: #333;
}

.team-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 16px;
    text-align: left;
}

    .team-table th, .team-table td {
        padding: 10px;
        border: 1px solid #ddd;
    }

    .team-table th {
        background-color: #333;
        color: #fff;
    }

.team-row {
    cursor: pointer;
    transition: background-color 0.2s;
}

    .team-row:hover {
        background-color: #f2f2f2;
    }

.actions button {
    margin: 0 5px;
    padding: 5px;
    cursor: pointer;
    background-color: #008cba;
    color: #fff;
    border: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

    .actions button:hover {
        background-color: #0077a3;
    }

.team-members {
    background-color: #f9f9f9;
}

    .team-members ul {
        list-style: none;
        padding: 0;
    }

    .team-members li {
        padding: 5px 0;
        border-bottom: 1px solid #ddd;
    }
.demo-container {
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: white;
    background-color: #3d3d3d;
    margin: 2vh 1vw;
    border-radius: 12px;
}

.demo-container h1 {
    text-align: center;
    margin-bottom: 20px;
}

.demo-content {
    display: flex;
    gap: 20px;
    align-items: flex-start; /* Aligne les �l�ments en haut */
}

.demo-code-block {
    flex: 1;
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    max-width: 55vw;
}

.demo-code-block pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.demo-preview-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-preview {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.demo-status {
    text-align: center;
    font-weight: bold;
}
.legal-page {
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px 30px;
    background-color: #272727;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #0066ff;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-container section {
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0066ff;
    opacity: 0.9;
}

.legal-container p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-container li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.legal-container a {
    color: #0066ff;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-container a:hover {
    color: #3389ff;
    text-decoration: underline;
}

.legal-container strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 15px;
        margin: 20px 15px;
    }
    
    .legal-container h1 {
        font-size: 2rem;
    }
    
    .legal-container h2 {
        font-size: 1.5rem;
    }
    
    .legal-container p, .legal-container li {
        font-size: 0.95rem;
    }
} .security-guide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #f0f0f0;
  min-height: 88vh;
}

.security-guide-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff;
}

.security-guide-header p {
  font-size: 1.125rem;
  color: #f0f0f0;
  line-height: 1.6;
}

.security-metrics-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.security-guide-section {
  background-color: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.security-guide-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.technical-configs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 2vw;
}

.technical-configs.inside {
    margin: 0 !important;    
}

.config-description {
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin: 0;
}

.doc-flex {
  display: flex;
  gap: 0.5rem;
}

.doc-lang-selector {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: none !important;
  font-weight: normal;
  color: #fff !important;
  transform: none !important;
  transition: all 0.3s ease;
}

.doc-lang-selector-selected {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-bottom: 3px solid #2575fc;
  background: none !important;
  font-weight: bold;
  color: #2575fc !important;
  transform: none !important;
}

.server-config {
  background: #333;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #444;
}

.server-config h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.server-config .code-block {
  margin: 0;
}

.security-meter-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-direction: column;
  flex: 1;
}

.security-meter {
  margin-bottom: 1rem;
}

.security-meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.security-meter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f0f0f0;
}

.security-meter-level {
  font-size: 0.875rem;
  color: #f0f0f0;
}

.security-meter-bar {
  width: 100%;
  height: 8px;
  background: #444;
  border-radius: 9999px;
  overflow: hidden;
}

.security-meter-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.security-meter-fill.high {
  background: #10b981;
  width: 100%;
}

.security-meter-fill.medium {
  background: #f59e0b;
  width: 66%;
}

.security-meter-fill.low {
  background: #ef4444;
  width: 33%;
}

.security-meter-fill.none {
  background: #6b7280;
  width: 5%;
}

.certifications-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.certification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #333;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.certification-item:hover {
  background: #3a3a3a;
}

.certification-name {
  font-size: 1rem;
  font-weight: 500;
  color: #f0f0f0;
}

.certification-icon {
  font-size: 1.25rem;
}

.certification-icon.required {
  color: #10b981;
}

.certification-icon.not-required {
  color: #ef4444;
}

.parameter-item {
  border-bottom: 1px solid #444;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  margin: 0 2vw;
}

.parameter-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.parameter-item h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.parameter-item p {
  color: #f0f0f0;
  line-height: 1.5;
  margin: 0;
}

.external-links-list {
  list-style: none;
  padding: 0;
  margin: 0 2vw;
}

.external-link-item {
  margin-bottom: 0.5rem;
}

.external-link {
  color: #2575fc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.external-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.code-block {
  background: #333;
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  border: 1px solid #444;
}

.parameter-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
}

.parameter-state {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}

.parameter-state svg {
  font-size: 0.875rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .security-guide {
    padding: 1rem;
  }

  .security-guide-header h1 {
    font-size: 2rem;
  }

  .security-guide-section {
    padding: 1rem;
  }

  .security-metrics-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .doc-flex {
    flex-wrap: wrap;
  }

  .doc-lang-selector,
  .doc-lang-selector-selected {
    padding: 8px 16px;
  }

  .config-description {
    padding: 0.75rem;
  }
}
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #2d2d2d; /* Gris foncé pour le texte principal */
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    background-attachment: fixed;
    background-size: cover;
}

/* Liens */
a {
    font-weight: 500;
    color: #2575fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: #2575fc; /* Couleur secondaire du gradient */
    }

/* Boutons */
button, .cta-button {
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 0.6em 1.2em;
    font-size: 1.2em;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background-color: #2575fc; /* Couleur du gradient */
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

    button:hover, .cta-button:hover {
        background-color: #2575fc; /* Couleur secondaire du gradient */
        color: #ffffff;
        transform: translateY(-2px);
    }

.flex {
    display: flex;
    align-items: center;
}

.body {
    top: 8vh;
    width: 100%;
    position: relative;
}

.color-white {
    color: white;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #f0f0f0;
    font-size: 14px;
}

/* JoyRide overflow css settings */
.__floater__body div div {
    margin-top: 0 !important;
}

