.bg-aide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.884), rgba(7, 10, 36, 0.874)),
                      url("/img/aide.jpg");
    backdrop-filter: blur(16px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1; /* Place le fond en arrière-plan */
}


a{
    color: aqua!important;
}

.lesAidesDeZinzin{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    overflow-y: auto;
    margin: 2em 5em;
    padding-bottom: 3em;
}
    
.popup {
    display: block;
    opacity: 0;
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #33333357;
    color: white;
    padding: 8px;
    font-size: 1em;
    border-radius: 8px;
    z-index: 999;
    box-shadow: 4px 4px 32px var(--blue);
    border: 1px solid var(--blue);
    transition: all 0.3s;
}

.containerAide{
    background-color: var(--bgtr);
    backdrop-filter: blur(16px);
    border-radius: 1em;
    padding: 1em;
    display: flex;
    width: 46%;
    flex-direction: column!important;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.082);
    align-items: flex-start;
}

@media (max-width: 1000px) {
    .containerAide{
        width: 95%!important;
    }               
}

.titreAide{
    font-weight: bold!important;
    font-size: 35px;
    text-align: center;
}

.veux{
    margin-top: 20px;
    font-size: 1.3em;
}

.commande{
    font-weight: bold!important;
    color: var(--blue);
    font-size: 1em;
    display: flow-root;
    cursor: pointer;
    transition: all 0.2s;
    max-height: 100px;
    overflow-y: hidden;
}

.commande:hover{
    font-size: 1.1em;
    padding: 1px;
    border: 1px solid var(--blue);
    border-radius: 8px;
}

.commande::after {
    content: " cliquer pour copier"; 
    font-size: 1em; 
    color: #bbbbbbb0; 
    position: relative;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 18px;
    font-style:italic;
}

.commande:hover::after {
    opacity: 1; /* Affichez-le au survol */
}

.optionnel{
    font-weight: bold!important;
    font-style: italic!important;
    color: rgb(255, 106, 0);
    font-size: 18px;
}

.optionnelAEnlever{
    font-weight: bold!important;
    font-style: italic!important;
    text-decoration: underline;
    color: rgb(255, 157, 0);
    font-size: 18px;
}

.info{
    font-size: 15px;
    color: white;
    font-weight: normal!important;
}
p{
    color: white;
}