
*{
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
}
body { 
    font-family: Arial, sans-serif; 
    position: relative;
    height: 100%;
    width: 100%;
}
input, select, button { 
    margin: 10px; 
    padding: 8px; }

    /* fin du carnage */
.contain_ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 9rem;
    width: 100%;
}
.contain_ul .autocompleteList {
    cursor: pointer; 
    background-color: #f9f9f9; 
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    overflow-y: auto;
}
.autocompleteList li{
    margin-bottom: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
    text-align: center;
    padding: 10px;
}
.autocompleteList li:hover{
    transform: scale(1.1);
    z-index: 100;
    background: rgb(16, 122, 202);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    color: #fff;

}
    .navBar {
        width: 100%;
        position: sticky;
        top: 0;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
.navBar .logo{
    padding: 10px;
    color: white;
}
.logo span{
    letter-spacing: 4px;
    font-weight: bolder;
    color: white;
}

.navBar .monEspace{
    padding: 10px;
}.monEspace a {
    display: inline-block;  /* Permet l'animation */
    background: green;
    padding: 10px 20px;  /* Meilleur espacement */
    border-radius: 30px;
    color: white;
    font-size: 16px;
    text-decoration: none; /* Supprime le soulignement */
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    animation: bounce 1.5s ease-in-out infinite;
}

/* Définition de l'animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); } /* Position normale */
    50% { transform: translateY(-8px); } /* Monte de 8px */
}

/* Effet au survol */
.monEspace a:hover {
    background: darkgreen; /* Change la couleur au survol */
}


    /* debut du changement  */
.container{
    background: rgb(16, 122, 202);
    height: 100%;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;

}
.input_terme{
    position: relative;
    padding: 20px ;
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.input_terme h2{
    color: white;
}
.form_input{
    border-radius: 25px;
    background: white;
    box-shadow: 2px 5px 5px 5px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 40%;
    display: flex;
    margin-bottom: 20px;
}
.form_input #searchQuery{
    border: none;
    width: 100%;
    padding: 5px 10px;
}
.form_input #subdomain{
    border: none;
    border-left: 2px solid gray;
    overflow: hidden;
    width: 50%;
}
.form_input .btn_send{
    background: none;
    border: none;
    background: green;
    border-radius: 30px;
    padding: 10px;
    color: white;
    transition: all ease-in-out 0.5s; 
    font-size: 16px;

}
.btn_send:hover{
    transform: translateY(-8px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2); /* Effet d'ombre pour un look plus dynamique */
}

/*  design resultat  */

.results{
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.results ul li{
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2); 
    margin-bottom: 20px;
}


.quotes {
    font-size: 16px;
    font-weight: bold; /* optionnel */
}
.results ul li .quotes::before {
    content: "“";
    font-size: 16px;
}

.results ul li .quotes::after {
    content: "”";
    font-size: 16px;
}