*, ::before, ::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    ::-webkit-scrollbar {
        display: none;
    }
    scrollbar-width: none;
    -ms-overflow-style: none;
}

@font-face {
    font-family: FontBold;
    src: url(FontBold.ttf);
}

@font-face {
    font-family: GlacialIndifference;
    src: url(GlacialIndifference.otf);
}

@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');

:root {
    --blanc: #ffffff;
    --gris-fonce: #414141;
    --bleu-clair: #3498DB;
    --rouge-pale: #db3434;
    --vert-clair: #53da75;
    --violet-clair: #ac34db;
}

.logo {
    cursor: default;
}

.logo, .menu {
    flex-grow: 1;
    display: flex;
    align-items: center; 
}

.logo span {
    margin-right: 2px;
}

.logo span:last-child {
    margin-right: 0;
}

footer {
    position: relative;
    font-size: 100%;
    padding: 2.5vh 0;
    color: var(--blanc);
    width: 100%;
    font-family: FontBold;
    font-style: italic;
    text-align: center;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #313131c0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 4;
}

@media only screen and (max-width: 450px) {

    /*base*/
    .navbar {
        position: relative;
        display: flex;
        font-family: FontBold;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
        color: var(--blanc);
        padding: 4% 4%;
        z-index: 5;
    }
    
    .container_navbar {
        width: 100%; 
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto; 
    }
    
    .nav-lien {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        overflow: hidden;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex; 
        z-index: -1;
        background-color: #142542;
        transition: width .5s ease; 
    }
    
    .nav-lien.nav-active {
        width: 100%; 
    }

    li {
        display: block; 
        margin: 3vh 0;
        font-size: 100%;
    } 

    li a {
        color: var(--blanc);
        text-decoration: none;
    } 

    .logo, .menu {
        font-size: 140%;
        font-family: GlacialIndifference;
    }

    .logo img {
        position: absolute;
        width: 20%;
        height: auto;   
    }
    
    .menu {
        justify-content: flex-end;
        font-size: 250%;
    }
    
    .admin-none {
        display: none;
    }

    /* index.php*/
    .container_accueil {
        position: relative;
        width: 100%;
        height: 100%;
        margin: 10% 0;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        flex: 1;
        padding: 0% 2%;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .container_accueil .container_textuel  {
        width: 100%;
        height: auto;
    }

    .container_accueil .container_textuel > div {
        opacity: 0;
        transform: translateX(-700px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
    
    .container_accueil [data-aos='fade-right'].aos-animate .container_textuel > div {
        opacity: 1;
        transform: translateX(0);
    }
    
    .container_accueil .container_titre {
        font-size: 170%;
        font-family: FontBold;
        width: 100%;
        line-height: 1.2;
        text-align: center;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_accueil .container_paragraphe {
        font-size: 100%;
        padding: 2vw;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 80px;
        font-family: "Poppins", sans-serif;
    }

    .container_accueil .btn-bouton {
        display: flex;
        width: 100%; 
        height: 50px;
        margin-bottom: 8%;
        gap: 20px;
    }

    .container_accueil .btn-bouton a {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 100%;
        background-color: #ff9956;
        border: 1px solid #ff9956;
        border-radius: 6px;
        font-size: 100%;
        font-family: FontBold;
        color: #1f2733;
        text-decoration: none;
        letter-spacing: 1px;
        z-index: 1;
        overflow: hidden;
    }

    .container_accueil .btn-bouton a:nth-child(2) {
        background: transparent;
        border: 1px solid #fc66c9;
        color: #fc66c9;
    }

    .container_accueil .btn-bouton a:nth-child(2):hover {
        color: #1f2733;
    }

    .container_accueil .btn-bouton a:nth-child(2)::before {
        background: #fc66c9;
    }

    .container_accueil .btn-bouton a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        z-index: -1;
        background-color: #142542;
        transition: .5s;

    }

    .container_accueil .btn-bouton a:hover::before {
        width: 100%;
        
    }

    .container_accueil .btn-bouton a:hover {
        color: #ff9956;
    }
    
    .container_accueil .container_image {
        display: none;
        position: absolute;
        top: 0%;
        width: 30%;
        right: 0;
        top: 2%;
        object-fit: cover;
        max-height: 100%; 
    }

    /* propos.php*/
    .container_page_propos {
        position: relative;
        height: auto;
        padding: 0% 2%;
        left: 50%;
        transform: translateX(-50%);
        color: var(--blanc);
        flex: 1;
        z-index: 2;
    }

    .container_page_propos .container_textuel {
        width: 100%;
    }   

    .container_page_propos .container_textuel > div {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-right'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-left'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }      

    .container_page_propos .histoire_eef {
        position: relative;
        margin-top: 10%;
    }
    
    .container_page_propos .container_titre_histoire_eef {
        font-size: 160%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: center;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_eef {
        font-size: 100%;
        line-height: 1.2;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .concept_original {
        position: relative;
        width: 100%;
        margin-top: 20%;

    }
    
    .container_page_propos .container_titre_concept_original {
        font-size: 160%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: center;
        color: #ff9956;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_concept_original {
        font-size: 100%;
        line-height: 1.2;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .histoire_de_ce_site {
        position: relative;
        width: 100%;
        margin-top: 20%;
        margin-bottom: 30%;

    }
    
    .container_page_propos .container_titre_histoire_de_ce_site {
        font-size: 160%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: center;
        color: #ff34cb;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_de_ce_site {
        font-size: 100%;
        line-height: 1.2;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    /*livre.php*/
    
    .wrapper_bibliotheque {
        font-family: FontBold;
        position: relative;
        width: 98%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        padding: 0%;
        border-radius: 15px;
        margin: 10vh 0;
        background-color: rgb(255, 255, 255);
        color: var(--gris-fonce);
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .info_bibliotheque {
        display: none;
    }

    .recherche-bibliotheque {
        margin-bottom: 40px;
    }
    
    .recherche {
        display: flex; 
        width: 85%;
        margin: 0 auto;
    }
    
    .recherche input[type="text"] {
        flex-grow: 1; 
        padding: 15px;
        outline: none;
        border: 1px solid var(--gris-fonce); 
        border-right: none;
        font-size: 80%;
    }
    
    .recherche button {
        background-color: var(--gris-fonce);
        color: white; 
        border: none; 
        padding: 10px 17px; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    
    .recherche button:hover {
        background-color: #313131; 
    }

    .wrapper_bibliotheque h1 {
        text-align: center;
        margin-bottom: 5%;
        margin-top: 5%;
        font-size: 170%;
    }

    .container_bibliotheque table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 20px;
        font-size: 85%;
    }

    .container_bibliotheque th, td {
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .container_bibliotheque th {
        background-color: #f2f2f2;
        position: sticky;
        top: 0; 
        z-index: 1;
    }

    .container_bibliotheque td a {
        text-decoration: none;
        color: var(--gris-fonce);
    }

    .container_bibliotheque td a:hover {
        color: #ff9956; 
    }

    .scrollable-table {
        max-height: 50vh; 
        overflow-y: auto;
    }

    .container_bibliotheque .auteur_responsive {
        display: none;
    }

    .container_bibliotheque  .pointvert,
    .pointrouge {
        display: none;
        aspect-ratio: 1 / 1; 
        height: 12.5px;
        border-radius: 50%;
        margin-right: 10px; 
    }

    .container_bibliotheque  .fond_status_vert {
        display: flex;
        align-items: center;
    }

    .container_bibliotheque  .fond_status_rouge {
        display: flex;
        align-items: center;
    }


    .container_bibliotheque table .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .fond_status_vert h4 {    
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .fond_status_rouge h4 {    
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .titre_livre {
        width: 35%;
    }

    .container_bibliotheque table .auteur_livre {
        width: 20%;
    }

    #genreHeader {
        cursor: pointer;
    }

    .auteur {
        display: none;
    }

    .dialog-box-genre {
        display: none;
        position: absolute;
        padding: 10% 3% 3% 3%;
        width: 250px;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        font-family: FontBold;
        border-radius: 6px;
        overflow: scroll;
        z-index: 2;
    }

    .close-boutton-genre {
        position: absolute;
        top: 2px;
        right: 10px;
        font-size: 170%;
        cursor: pointer;
        color: var(--gris-fonce);
    }

    .dialog-box-genre h5 {
        font-size: 85%;
        margin: 10px;
        color: var(--gris-fonce);
    }

    .genre_select {
        cursor: pointer;
    }

    .reset_filtres {
        margin-top: 20px;
        background-color: var(--gris-fonce);
        color: white;
        border: transparent;
        font-family: FontBold;
        font-size: 85%;
        padding: 10px;
        width: 100%;
        cursor: pointer;
        border-radius: 6px;
    }

    .reset_filtres:hover {
        cursor: pointer;
        background-color: #313131;
    }

    /*Livre_info.php*/

    .wrapper_info_livre {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wrapper_info {
        position: relative;
        width: 95%;
        height: auto;
        padding: 5%;
        margin: 10vh 0vh;
        border-radius: 6px;
        background-color: #ffffff;
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        z-index: 2;
    }

    .wrapper_info h1 {
        margin-top: 40px;
        font-size: 170%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info h2 {
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
        margin-bottom: 20px;
    }

    .wrapper_info p {
        margin-top: 5%;
        font-size: 110%;
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info .ligne {
        margin-top: 5%;
        border-bottom: solid 2px var(--gris-fonce);
    }

    .wrapper_info h3 {
        margin-top: 5%;
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
    }

    .fond_status_vert_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .fond_status_rouge_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .wrapper_info .pointvert,
    .pointrouge {
        width: 15px;
        aspect-ratio: 1 / 1; 
        border-radius: 50%;
        margin-right: 10px;
    }

    .wrapper_info .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .wrapper_info .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .fond_status_vert_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .fond_status_rouge_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }

    /* autres.php */

    .wrapper_autres {
        font-family: FontBold;
        position: relative;
        width: 98%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 5vh 0;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .container_categorie_autres {
        position: relative;
        height: auto;
        margin-top: 5%;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(1, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img {
        position: absolute;
        padding: 2%;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre {
        position: absolute;
        width: 100%;
        height: 30%;
        bottom: 0;

    }

    .box_autres {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(300px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
        cursor: pointer;
    }

    .box_autres img {
        width: 80%;
        max-height: 80%;
        object-fit: contain;
    }

    .box_autres a {
        width: 100%;
        height: 100%;
    }

    .box_autres:hover {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    }

    /* autres_info.php */

    .wrapper_autres_info {
        font-family: FontBold;
        position: relative;
        width: 98%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 5vh 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .wrapper_autres_info h1 {
        text-align: center;
        font-size: 170%;
        margin-top: 6%;
    }

    .container_categorie_info_autres {
        position: relative;
        height: auto;
        margin-top: 4%;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        padding: 5%;
        grid-template-columns: repeat(1, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img_info {
        position: relative;
        padding: 2% 2% 0 2%;
        top: 0;
        width: 100%;
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre_info {
        position: relative;
        width: 100%;
        height: 15%;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .container_autres_box_titre_info h2 {
        text-align: center;
        font-size: 120%;
        color: var(--gris-fonce);

    }

    .container_autres_box_titre_button_info {
        position: relative;
        width: 100%;
        height: 25%;
        bottom: 0;

    }

    .box_autres_info {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(300px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
    }

    .box_autres_info img {
        width: 70%;
        max-height: 90%;
        object-fit: contain;
    }

    .box_autres_info a {
        text-decoration: none;
        color: white;
        font-size: 100%;
    }

    .container_autres_box_titre_info h1 {
        text-align: center;
        color: var(--gris-fonce);
        margin-bottom: 10px;
    }

    .boutton_box_info {
        position: absolute;
        text-align: center;
        width: 60%;
        left: 50%;
        top: 50%; 
        transform: translate(-50%, -50%); 
        padding: 7px;
        border-radius: 6px;
        color: var(--blanc);
        background-color: var(--gris-fonce);
        border: none;
    }

    .boutton_box_info:hover {
        background-color: #313131;
    }

}

@media only screen and (min-width: 450px) and (max-width: 760px) {

    /*base*/
    .navbar {
        position: relative;
        display: flex;
        font-family: FontBold;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
        color: var(--blanc);
        padding: 4% 4%;
        z-index: 5;
    }
    
    .container_navbar {
        width: 100%; 
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto; 
    }
    
    .nav-lien {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        overflow: hidden;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex; 
        z-index: -1;
        background-color: #142542;
        transition: width .5s ease; 
    }
    
    .nav-lien.nav-active {
        width: 100%; 
    }

    li {
        display: block; 
        margin: 3vh 0;
        font-size: 100%;
    } 

    li a {
        color: var(--blanc);
        text-decoration: none;
    } 

    .logo, .menu {
        font-size: 140%;
        font-family: GlacialIndifference;
    }

    .logo img {
        position: absolute;
        width: 20%;
        height: auto;   
    }
    
    .menu {
        justify-content: flex-end;
        font-size: 250%;
    }
    
    .admin-none {
        display: none;
    }

    
    .espace {
        position: relative;
        z-index: 2;
    }

    .espace_template {
        position: relative;
        height: 100px;
        width: 100%;
        z-index: 2;
    }    

    /* index.php*/
    .container_accueil {
        position: relative;
        width: 100%;
        height: 100%;
        margin: 8% 0;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        flex: 1;
        padding: 0% 2%;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .container_accueil .container_textuel  {
        width: 100%;
        height: auto;
    }
    
    .container_accueil .container_titre {
        font-size: 170%;
        font-family: FontBold;
        width: 100%;
        line-height: 1.2;
        text-align: center;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_accueil .container_paragraphe {
        font-size: 100%;
        padding: 2vw;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 80px;
        font-family: "Poppins", sans-serif;
    }

    .container_accueil .btn-bouton {
        display: flex;
        width: 80%; 
        height: 50px;
        margin: 0px auto;
        margin-bottom: 8%;
        gap: 20px;
    }

    .container_accueil .btn-bouton a {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 100%;
        background-color: #ff9956;
        border: 1px solid #ff9956;
        border-radius: 6px;
        font-size: 100%;
        font-family: FontBold;
        color: #1f2733;
        text-decoration: none;
        letter-spacing: 1px;
        z-index: 1;
        overflow: hidden;
    }

    .container_accueil .btn-bouton a:nth-child(2) {
        background: transparent;
        border: 1px solid #fc66c9;
        color: #fc66c9;
    }

    .container_accueil .btn-bouton a:nth-child(2):hover {
        color: #1f2733;
    }

    .container_accueil .btn-bouton a:nth-child(2)::before {
        background: #fc66c9;
    }

    .container_accueil .btn-bouton a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        z-index: -1;
        background-color: #142542;
        transition: .5s;

    }

    .container_accueil .btn-bouton a:hover::before {
        width: 100%;
        
    }

    .container_accueil .btn-bouton a:hover {
        color: #ff9956;
    }
    
    .container_accueil .container_image {
        display: none;
        position: absolute;
        top: 0%;
        width: 30%;
        right: 0;
        top: 2%;
        object-fit: cover;
        max-height: 100%; 
    }

    /* propos.php*/
    .container_page_propos {
        position: relative;
        height: auto;
        padding: 0% 2%;
        left: 50%;
        transform: translateX(-50%);
        color: var(--blanc);
        flex: 1;
        z-index: 2;
    }

    .container_page_propos .container_textuel {
        width: 100%;
    }   

    .container_page_propos .container_textuel > div {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-right'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-left'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }      

    .container_page_propos .histoire_eef {
        position: relative;
        margin-top: 10%;
    }
    
    .container_page_propos .container_titre_histoire_eef {
        font-size: 160%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: center;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_eef {
        font-size: 100%;
        line-height: 1.2;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .concept_original {
        position: relative;
        width: 100%;
        margin-top: 20%;

    }
    
    .container_page_propos .container_titre_concept_original {
        font-size: 160%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: center;
        color: #ff9956;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_concept_original {
        font-size: 100%;
        line-height: 1.2;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .histoire_de_ce_site {
        position: relative;
        width: 100%;
        margin-top: 20%;
        margin-bottom: 30%;

    }
    
    .container_page_propos .container_titre_histoire_de_ce_site {
        font-size: 160%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: center;
        color: #ff34cb;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_de_ce_site {
        font-size: 100%;
        line-height: 1.2;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    /*livre.php*/
    
    .wrapper_bibliotheque {
        font-family: FontBold;
        position: relative;
        width: 98%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        padding: 0%;
        border-radius: 15px;
        margin: 5vh 0;
        background-color: rgb(255, 255, 255);
        color: var(--gris-fonce);
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .info_bibliotheque {
        display: none;
    }

    .recherche-bibliotheque {
        margin-bottom: 40px;
    }
    
    .recherche {
        display: flex; 
        width: 85%;
        margin: 0 auto;
    }
    
    .recherche input[type="text"] {
        flex-grow: 1; 
        padding: 15px;
        outline: none;
        border: 1px solid var(--gris-fonce); 
        border-right: none;
        font-size: 80%;
    }
    
    .recherche button {
        background-color: var(--gris-fonce);
        color: white; 
        border: none; 
        padding: 10px 17px; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    
    .recherche button:hover {
        background-color: #313131; 
    }

    .wrapper_bibliotheque h1 {
        text-align: center;
        margin-bottom: 5%;
        margin-top: 5%;
        font-size: 170%;
    }

    .container_bibliotheque table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 20px;
        font-size: 85%;
    }

    .container_bibliotheque th, td {
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .container_bibliotheque th {
        background-color: #f2f2f2;
        position: sticky;
        top: 0; 
        z-index: 1;
    }

    .container_bibliotheque td a {
        text-decoration: none;
        color: var(--gris-fonce);
    }

    .container_bibliotheque td a:hover {
        color: #ff9956; 
    }

    .scrollable-table {
        max-height: 50vh; 
        overflow-y: auto;
    }

    .container_bibliotheque .auteur_responsive {
        display: none;
    }

    .container_bibliotheque  .pointvert,
    .pointrouge {
        display: none;
        aspect-ratio: 1 / 1; 
        height: 12.5px;
        border-radius: 50%;
        margin-right: 10px; 
    }

    .container_bibliotheque  .fond_status_vert {
        display: flex;
        align-items: center;
    }

    .container_bibliotheque  .fond_status_rouge {
        display: flex;
        align-items: center;
    }


    .container_bibliotheque table .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .fond_status_vert h4 {    
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .fond_status_rouge h4 {    
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .titre_livre {
        width: 35%;
    }

    .container_bibliotheque table .auteur_livre {
        width: 20%;
    }

    #genreHeader {
        cursor: pointer;
    }

    .dialog-box-genre {
        display: none;
        position: absolute;
        padding: 10% 3% 3% 3%;
        width: 250px;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        font-family: FontBold;
        border-radius: 6px;
        overflow: scroll;
        z-index: 2;
    }

    .close-boutton-genre {
        position: absolute;
        top: 2px;
        right: 10px;
        font-size: 170%;
        cursor: pointer;
        color: var(--gris-fonce);
    }

    .dialog-box-genre h5 {
        font-size: 85%;
        margin: 10px;
        color: var(--gris-fonce);
    }

    .genre_select {
        cursor: pointer;
    }

    .reset_filtres {
        margin-top: 20px;
        background-color: var(--gris-fonce);
        color: white;
        border: transparent;
        font-family: FontBold;
        font-size: 85%;
        padding: 10px;
        width: 100%;
        cursor: pointer;
        border-radius: 6px;
    }

    .reset_filtres:hover {
        cursor: pointer;
        background-color: #313131;
    }

    /*Livre_info.php*/

    .wrapper_info_livre {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wrapper_info {
        position: relative;
        width: 90%;
        height: auto;
        padding: 5%;
        margin: 10vh 0vh;
        border-radius: 6px;
        background-color: #ffffff;
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        z-index: 2;
    }

    .wrapper_info h1 {
        margin-top: 40px;
        font-size: 170%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info h2 {
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
        margin-bottom: 20px;
    }

    .wrapper_info p {
        margin-top: 5%;
        font-size: 110%;
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info .ligne {
        margin-top: 5%;
        border-bottom: solid 2px var(--gris-fonce);
    }

    .wrapper_info h3 {
        margin-top: 5%;
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
    }

    .fond_status_vert_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .fond_status_rouge_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .wrapper_info .pointvert,
    .pointrouge {
        width: 15px;
        aspect-ratio: 1 / 1; 
        border-radius: 50%;
        margin-right: 10px;
    }

    .wrapper_info .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .wrapper_info .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .fond_status_vert_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .fond_status_rouge_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }

    /* autres.php */

    .wrapper_autres {
        font-family: FontBold;
        position: relative;
        width: 98%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 5vh 0;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .container_categorie_autres {
        position: relative;
        height: auto;
        margin-top: 5%;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        padding: 0% 5%;
        grid-template-columns: repeat(2, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img {
        position: absolute;
        padding: 2%;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre {
        position: absolute;
        width: 100%;
        height: 30%;
        bottom: 0;

    }

    .box_autres {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(300px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
    }

    .box_autres img {
        width: 80%;
        max-height: 80%;
        object-fit: contain;
    }

    .box_autres a {
        width: 100%;
        height: 100%;
    }

    .box_autres:hover {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    }

    /* autres_info.php */

    .wrapper_autres_info {
        font-family: FontBold;
        position: relative;
        width: 98%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 5vh 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .wrapper_autres_info h1 {
        text-align: center;
        font-size: 170%;
        margin-top: 6%;
    }

    .container_categorie_info_autres {
        position: relative;
        height: auto;
        margin-top: 5%;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        padding: 0% 5%;
        grid-template-columns: repeat(2, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img_info {
        position: relative;
        padding: 2% 2% 0 2%;
        top: 0;
        width: 100%;
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre_info {
        position: relative;
        width: 100%;
        height: 15%;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .container_autres_box_titre_info h2 {
        text-align: center;
        font-size: 120%;
        color: var(--gris-fonce);

    }

    .container_autres_box_titre_button_info {
        position: relative;
        width: 100%;
        height: 25%;
        bottom: 0;

    }

    .box_autres_info {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(300px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
    }

    .box_autres_info img {
        width: 70%;
        max-height: 90%;
        object-fit: contain;
    }

    .box_autres_info a {
        text-decoration: none;
        color: white;
        font-size: 100%;
    }

    .container_autres_box_titre_info h1 {
        text-align: center;
        color: var(--gris-fonce);
        margin-bottom: 10px;
    }

    .boutton_box_info {
        position: absolute;
        text-align: center;
        width: 60%;
        left: 50%;
        top: 50%; 
        transform: translate(-50%, -50%); 
        padding: 7px;
        border-radius: 6px;
        color: var(--blanc);
        background-color: var(--gris-fonce);
        border: none;
    }

    .boutton_box_info:hover {
        background-color: #313131;
    }

}

@media only screen and (min-width: 760px) and (max-width: 1000px) {

    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    } 


    /*base*/
    .navbar {
        position: relative;
        display: flex;
        font-family: FontBold;
        justify-content: center;
        align-items: center;
        width: 100%;
        color: var(--blanc);
        padding: 30px 0;
        z-index: 5;
    }
    
    .container_navbar {
        width: 95%; 
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto; 
    }
    
    .nav-lien {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    li {
        display: flex; 
        font-size: 100%;
        margin: 0 20px;
    } 

    li a {
        color: var(--blanc);
        text-decoration: none;
    } 

    li a:hover {
        border-bottom: 2px solid white;
    }

    .logo, .menu {
        font-size: 140%;
        font-family: GlacialIndifference;
    }

    .logo img {
        position: absolute;
        width: 150px;
        height: auto;
    }
    
    .menu {
        display: none;
    }

    .espace {
        display: none;
    }

    .espace_template {
        display: none;
    }

    .container_page {
        position: relative;
        height: 100vh;

    }

    /* connexion.php */

    .wrapper_connexion {
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        position: relative;
        width: 500px;
        height: 500px;
        border-radius: 6px;
        left: 50%; 
        top: 50%; 
        transform: translate(-50%, -50%);
        padding: 40px 70px;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .wrapper_connexion .back-button  {
        position: absolute;
        font-family: FontBold;
        top: 15px;
        left: 15px;
        color: var(--gris-fonce);
        font-size: 16px;
        text-decoration: none;
    }

    .wrapper_connexion h1 {
        color: var(--gris-fonce);
        font-size: 36px;
        text-align: center;
        margin-top: 60px;
    }

    .wrapper_connexion h2 {
        color: var(--gris-fonce);
        font-size: 16px;
        text-align: center;
    }

    .wrapper_connexion h3 {
        margin-top: 5px;
        color: #ec4949;
        font-size: 16px;
        text-align: center;
    }

    .wrapper_connexion .input-box {
        position: relative;
        width: 100%;
        height: 50px;
        margin: 30px 0;
    }

    .wrapper_connexion .input-box input {
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        border-bottom: 2px solid var(--gris-fonce);
        font-size: 18px;
        color: var(--gris-fonce);
        padding: 20px 45px 20px 20px;
    }

    .wrapper_connexion .input-box input ::placeholder {
        color: var(--gris-fonce);
    }

    .wrapper_connexion .input-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
    }

    .wrapper_connexion .btn {
        width: 100%;
        height: 45px;
        background-color: var(--gris-fonce);
        border: none;
        outline: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        color: #ffffff;
        font-weight: 600;
    }

    .wrapper_connexion .btn:hover {
        background-color: #313131;
    }

    /* first_connexion.php */

    .wrapper_first_connexion {
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        position: relative;
        width: 500px;
        height: 500px;
        border-radius: 6px;
        left: 50%; 
        top: 50%; 
        transform: translate(-50%, -50%);
        padding: 40px 70px;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .wrapper_first_connexion .back-button  {
        position: absolute;
        font-family: FontBold;
        top: 15px;
        left: 15px;
        color: var(--gris-fonce);
        font-size: 16px;
        text-decoration: none;
    }

    .wrapper_first_connexion h1 {
        color: var(--gris-fonce);
        font-size: 36px;
        text-align: center;
        margin-top: 60px;
    }

    .wrapper_first_connexion h2 {
        color: var(--gris-fonce);
        font-size: 16px;
        text-align: center;
    }

    .wrapper_first_connexion h3 {
        margin-top: 5px;
        color: #ec4949;
        font-size: 16px;
        text-align: center;
    }

    .wrapper_first_connexion .input-box {
        position: relative;
        width: 100%;
        height: 50px;
        margin: 30px 0;
    }

    .wrapper_first_connexion .input-box input {
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        border-bottom: 2px solid var(--gris-fonce);
        font-size: 18px;
        color: var(--gris-fonce);
        padding: 20px 45px 20px 20px;
    }

    .wrapper_first_connexion .input-box input ::placeholder {
        color: var(--gris-fonce);
    }

    .wrapper_first_connexion .input-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
    }

    .wrapper_first_connexion .btn {
        width: 100%;
        height: 45px;
        background-color: var(--gris-fonce);
        border: none;
        outline: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        color: #ffffff;
        font-weight: 600;
    }

    .wrapper_first_connexion .btn:hover {
        background-color: #313131;
    }


    /* index.php*/
    .container_accueil {
        position: relative;
        max-width: 95%;
        height: 100%;
        border-radius: 6px;
        margin: 0 auto;
        color: var(--blanc);
        flex: 1;
        z-index: 2;
    }

    .container_accueil_element {
        position: relative;
        margin-top: 10vh;
    }

    .container_accueil .container_textuel  {
        width: 55%;
        height: auto;
    }

    .container_accueil .container_textuel > div {
        opacity: 0;
        transform: translateX(-600px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
    
    .container_accueil [data-aos='fade-right'].aos-animate .container_textuel > div {
        opacity: 1;
        transform: translateX(0);
    }
    
    
    .container_accueil .container_titre {
        font-size: 170%;
        font-family: FontBold;
        width: 100%;
        line-height: 1.2;
        text-align: left;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_accueil .container_paragraphe {
        font-size: 100%;
        line-height: 1.2;
        text-align: left;
        margin-bottom: 80px;
        font-family: "Poppins", sans-serif;
    }

    .container_accueil .btn-bouton {
        display: flex;
        width: 50%; 
        height: 50px;
        margin-bottom: 8%;
        gap: 20px;
    }

    .container_accueil .btn-bouton a {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40%;
        height: 100%;
        background-color: #ff9956;
        border: 1px solid #ff9956;
        border-radius: 6px;
        font-size: 100%;
        font-family: FontBold;
        color: #1f2733;
        text-decoration: none;
        letter-spacing: 1px;
        z-index: 1;
        overflow: hidden;
    }

    .container_accueil .btn-bouton a:nth-child(2) {
        background: transparent;
        border: 1px solid #fc66c9;
        color: #fc66c9;
    }

    .container_accueil .btn-bouton a:nth-child(2):hover {
        color: #1f2733;
    }

    .container_accueil .btn-bouton a:nth-child(2)::before {
        background: #fc66c9;
    }

    .container_accueil .btn-bouton a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        z-index: -1;
        background-color: #142542;
        transition: .5s;
 
    }

    .container_accueil .btn-bouton a:hover::before {
        width: 100%;
        
    }

    .container_accueil .btn-bouton a:hover {
        color: #ff9956;
    }
    
    .container_accueil .container_image {
        position: absolute;
        top: 50%;
        width: 30%;
        right: 0;
        transform: translateY(-50%);
        object-fit: cover;
        max-height: 100%;
    }
    
    /* propos.php*/
    .container_page_propos {
        position: relative;
        height: auto;
        padding: 0% 2%;
        left: 50%;
        transform: translateX(-50%);
        color: var(--blanc);
        flex: 1;
        z-index: 2;
    }

    .container_page_propos .container_textuel {
        width: 80%;
        margin: 0px auto;
    }   

    .container_page_propos .container_textuel > div {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-right'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-left'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }      

    .container_page_propos .histoire_eef {
        position: relative;
        margin-top: 10%;
    }
    
    .container_page_propos .container_titre_histoire_eef {
        font-size: 160%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: center;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_eef {
        font-size: 100%;
        line-height: 1.2;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .concept_original {
        position: relative;
        width: 100%;
        margin-top: 20%;

    }
    
    .container_page_propos .container_titre_concept_original {
        font-size: 160%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: center;
        color: #ff9956;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_concept_original {
        font-size: 100%;
        line-height: 1.2;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .histoire_de_ce_site {
        position: relative;
        width: 100%;
        margin-top: 20%;
        margin-bottom: 30%;

    }
    
    .container_page_propos .container_titre_histoire_de_ce_site {
        font-size: 160%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: center;
        color: #ff34cb;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_de_ce_site {
        font-size: 100%;
        line-height: 1.2;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    /*livre.php*/
    
    .wrapper_bibliotheque {
        font-family: FontBold;
        position: relative;
        width: 98%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        padding: 20px;
        margin: 50px 0;
        max-width: 1000px;
        border-radius: 6px;
        background-color: rgb(255, 255, 255);
        color: var(--gris-fonce);
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .info_bibliotheque {
        display: none;
    }

    .recherche-bibliotheque {
        margin-bottom: 40px;
        display: flex; 
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-end;
    }
    
    .recherche {
        display: flex; 
        max-width: 30%;
    }
    
    .recherche input[type="text"] {
        flex-grow: 1; 
        padding: 15px;
        outline: none;
        border: 1px solid var(--gris-fonce); 
        border-right: none;
        font-size: 16px;
    }
    
    .recherche button {
        background-color: var(--gris-fonce);
        color: white; 
        border: none; 
        padding: 10px 20px; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    
    .recherche button:hover {
        background-color: #313131; 
    }

    .wrapper_bibliotheque h1 {
        text-align: center;
        margin-bottom: 50px;
        margin-top: 50px;
        font-size: 170%;
    }

    .container_bibliotheque table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 20px;
        font-size: 85%;
    }

    .container_bibliotheque th, td {
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .container_bibliotheque th {
        background-color: #f2f2f2;
        position: sticky;
        top: 0; 
        z-index: 1;
    }

    .container_bibliotheque td a {
        text-decoration: none;
        color: var(--gris-fonce);
    }

    .container_bibliotheque td a:hover {
        color: #ff9956; 
    }

    .scrollable-table {
        max-height: 50vh; 
        overflow-y: auto;
    }

    .container_bibliotheque  .pointvert,
    .pointrouge {
        aspect-ratio: 1 / 1; 
        height: 12.5px;
        border-radius: 50%;
        margin-right: 10px; 
    }

    .container_bibliotheque  .fond_status_vert {
        display: flex;
        align-items: center;
    }

    .container_bibliotheque  .fond_status_rouge {
        display: flex;
        align-items: center;
    }


    .container_bibliotheque table .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .fond_status_vert h4 {    
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .fond_status_rouge h4 { 
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .titre_livre {
        width: 35%;
    }

    .container_bibliotheque table .auteur_livre {
        width: 20%;
    }

    #genreHeader {
        cursor: pointer;
    }

    .dialog-box-genre {
        display: none;
        position: absolute;
        padding: 50px 20px 20px 20px;
        width: 350px;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        font-family: FontBold;
        border-radius: 6px;
        overflow: scroll;
        z-index: 2;
    }

    .close-boutton-genre {
        position: absolute;
        top: -5px;
        right: 10px;
        font-size: 170%;
        cursor: pointer;
        color: var(--gris-fonce);
    }

    .dialog-box-genre h5 {
        font-size: 85%;
        margin: 10px;
        color: var(--gris-fonce);
    }

    .genre_select {
        cursor: pointer;
    }

    .reset_filtres {
        margin-top: 20px;
        background-color: var(--gris-fonce);
        color: white;
        border: transparent;
        font-family: FontBold;
        font-size: 85%;
        padding: 10px;
        width: 100%;
        cursor: pointer;
        border-radius: 6px;
    }

    .reset_filtres:hover {
        cursor: pointer;
        background-color: #313131;
    }

    /*Livre_info.php*/

    .wrapper_info_livre {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wrapper_info {
        position: relative;
        width: 550px;
        height: auto;
        padding: 5%;
        margin: 10vh 0vh;
        border-radius: 6px;
        background-color: #ffffff;
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        z-index: 2;
    }

    .wrapper_info h1 {
        margin-top: 40px;
        font-size: 170%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info h2 {
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
        margin-bottom: 20px;
    }

    .wrapper_info p {
        margin-top: 5%;
        font-size: 110%;
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info .ligne {
        margin-top: 5%;
        border-bottom: solid 2px var(--gris-fonce);
    }

    .wrapper_info h3 {
        margin-top: 5%;
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
    }

    .fond_status_vert_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .fond_status_rouge_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .wrapper_info .pointvert,
    .pointrouge {
        width: 15px;
        aspect-ratio: 1 / 1; 
        border-radius: 50%;
        margin-right: 10px;
    }

    .wrapper_info .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .wrapper_info .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .fond_status_vert_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .fond_status_rouge_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }

    /* autres.php */

    .wrapper_autres {
        font-family: FontBold;
        position: relative;
        max-width: 95%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 5vh 0;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .container_categorie_autres {
        position: relative;
        height: auto;
        left: 50%;
        padding: 0% 5%;
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img {
        position: absolute;
        padding: 2%;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre {
        position: absolute;
        width: 100%;
        height: 30%;
        bottom: 0;

    }

    .box_autres {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(400px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
    }

    .box_autres img {
        width: 80%;
        max-height: 80%;
        object-fit: contain;
    }

    .box_autres a {
        width: 100%;
        height: 100%;
    }

    .box_autres:hover {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    }


    /* autres_info.php */

    .wrapper_autres_info {
        font-family: FontBold;
        position: relative;
        max-width: 1000px;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 50px 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .wrapper_autres_info h1 {
        text-align: center;
        font-size: 170%;
        margin-top: 80px;
    }

    .container_categorie_info_autres {
        position: relative;
        height: auto;
        margin-top: 70px;
        left: 50%;
        padding: 0% 5%;
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img_info {
        position: relative;
        padding: 2%;
        top: 0;
        width: 100%;
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre_info {
        position: relative;
        width: 100%;
        height: 15%;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .container_autres_box_titre_button_info {
        position: relative;
        width: 100%;
        height: 25%;
        bottom: 0;

    }

    .box_autres_info {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(400px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
    }

    .box_autres_info img {
        width: 70%;
        max-height: 90%;
        object-fit: contain;
    }

    .box_autres_info a {
        text-decoration: none;
        color: white;
        font-size: 18px;
    }

    .container_autres_box_titre_info h1 {
        text-align: center;
        color: var(--gris-fonce);
        margin-bottom: 10px;
    }

    .container_autres_box_titre_info h2 {
        text-align: center;
        font-size: 22.5px;
        color: var(--gris-fonce);

    }

    .boutton_box_info {
        position: absolute;
        text-align: center;
        width: 60%;
        left: 50%;
        top: 50%; 
        transform: translate(-50%, -50%); 
        padding: 7px;
        border-radius: 6px;
        color: var(--blanc);
        background-color: var(--gris-fonce);
        border: none;
    }

    .boutton_box_info:hover {
        background-color: #313131;
    }

}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {

    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    } 


    /*base*/
    .navbar {
        position: relative;
        display: flex;
        font-family: FontBold;
        justify-content: center;
        align-items: center;
        width: 100%;
        color: var(--blanc);
        padding: 30px 0;
        z-index: 5;
    }
    
    .container_navbar {
        max-width: 1000px;
        width: 100%; 
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto; 
    }
    
    .nav-lien {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    li {
        display: flex; 
        font-size: 100%;
        margin: 0 20px;
    } 

    li a {
        color: var(--blanc);
        text-decoration: none;
    } 

    li a:hover {
        border-bottom: 2px solid white;
    }

    .logo, .menu {
        font-size: 140%;
        font-family: GlacialIndifference;
    }

    .logo img {
        position: absolute;
        width: 150px;
        height: auto;
    }
    
    .menu {
        display: none;
    }

    .espace {
        display: none;
    }

    .espace_template {
        display: none;
    }

    .container_page {
        position: relative;
        height: 100vh;

    }

    /* connexion.php */

    .wrapper_connexion {
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        position: relative;
        width: 500px;
        height: 500px;
        border-radius: 6px;
        left: 50%; 
        top: 50%; 
        transform: translate(-50%, -50%);
        padding: 40px 70px;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .wrapper_connexion .back-button  {
        position: absolute;
        font-family: FontBold;
        top: 15px;
        left: 15px;
        color: var(--gris-fonce);
        font-size: 16px;
        text-decoration: none;
    }

    .wrapper_connexion h1 {
        color: var(--gris-fonce);
        font-size: 36px;
        text-align: center;
        margin-top: 60px;
    }

    .wrapper_connexion h2 {
        color: var(--gris-fonce);
        font-size: 16px;
        text-align: center;
    }

    .wrapper_connexion h3 {
        margin-top: 5px;
        color: #ec4949;
        font-size: 16px;
        text-align: center;
    }

    .wrapper_connexion .input-box {
        position: relative;
        width: 100%;
        height: 50px;
        margin: 30px 0;
    }

    .wrapper_connexion .input-box input {
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        border-bottom: 2px solid var(--gris-fonce);
        font-size: 18px;
        color: var(--gris-fonce);
        padding: 20px 45px 20px 20px;
    }

    .wrapper_connexion .input-box input ::placeholder {
        color: var(--gris-fonce);
    }

    .wrapper_connexion .input-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
    }

    .wrapper_connexion .btn {
        width: 100%;
        height: 45px;
        background-color: var(--gris-fonce);
        border: none;
        outline: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        color: #ffffff;
        font-weight: 600;
    }

    .wrapper_connexion .btn:hover {
        background-color: #313131;
    }

    /* first_connexion.php */

    .wrapper_first_connexion {
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        position: relative;
        width: 500px;
        height: 500px;
        border-radius: 6px;
        left: 50%; 
        top: 50%; 
        transform: translate(-50%, -50%);
        padding: 40px 70px;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .wrapper_first_connexion .back-button  {
        position: absolute;
        font-family: FontBold;
        top: 15px;
        left: 15px;
        color: var(--gris-fonce);
        font-size: 16px;
        text-decoration: none;
    }

    .wrapper_first_connexion h1 {
        color: var(--gris-fonce);
        font-size: 36px;
        text-align: center;
        margin-top: 60px;
    }

    .wrapper_first_connexion h2 {
        color: var(--gris-fonce);
        font-size: 16px;
        text-align: center;
    }

    .wrapper_first_connexion h3 {
        margin-top: 5px;
        color: #ec4949;
        font-size: 16px;
        text-align: center;
    }

    .wrapper_first_connexion .input-box {
        position: relative;
        width: 100%;
        height: 50px;
        margin: 30px 0;
    }

    .wrapper_first_connexion .input-box input {
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        border-bottom: 2px solid var(--gris-fonce);
        font-size: 18px;
        color: var(--gris-fonce);
        padding: 20px 45px 20px 20px;
    }

    .wrapper_first_connexion .input-box input ::placeholder {
        color: var(--gris-fonce);
    }

    .wrapper_first_connexion .input-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
    }

    .wrapper_first_connexion .btn {
        width: 100%;
        height: 45px;
        background-color: var(--gris-fonce);
        border: none;
        outline: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        color: #ffffff;
        font-weight: 600;
    }

    .wrapper_first_connexion .btn:hover {
        background-color: #313131;
    }

    /* index.php*/
    .container_accueil {
        position: relative;
        max-width: 1000px;
        height: 100%;
        border-radius: 6px;
        margin: 0 auto;
        color: var(--blanc);
        flex: 1;
        z-index: 2;
    }

    .container_accueil_element {
        position: relative;
        margin-top: 10vh;
    }

    .container_accueil .container_textuel  {
        width: 55%;
        height: auto;
    }

    .container_accueil .container_textuel > div {
        opacity: 0;
        transform: translateX(-600px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
    
    .container_accueil [data-aos='fade-right'].aos-animate .container_textuel > div {
        opacity: 1;
        transform: translateX(0);
    }
    
    
    .container_accueil .container_titre {
        font-size: 170%;
        font-family: FontBold;
        width: 100%;
        line-height: 1.2;
        text-align: left;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_accueil .container_paragraphe {
        font-size: 100%;
        line-height: 1.2;
        text-align: left;
        margin-bottom: 80px;
        font-family: "Poppins", sans-serif;
    }

    .container_accueil .btn-bouton {
        display: flex;
        width: 50%; 
        height: 50px;
        margin-bottom: 8%;
        gap: 20px;
    }

    .container_accueil .btn-bouton a {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40%;
        height: 100%;
        background-color: #ff9956;
        border: 1px solid #ff9956;
        border-radius: 6px;
        font-size: 100%;
        font-family: FontBold;
        color: #1f2733;
        text-decoration: none;
        letter-spacing: 1px;
        z-index: 1;
        overflow: hidden;
    }

    .container_accueil .btn-bouton a:nth-child(2) {
        background: transparent;
        border: 1px solid #fc66c9;
        color: #fc66c9;
    }

    .container_accueil .btn-bouton a:nth-child(2):hover {
        color: #1f2733;
    }

    .container_accueil .btn-bouton a:nth-child(2)::before {
        background: #fc66c9;
    }

    .container_accueil .btn-bouton a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        z-index: -1;
        background-color: #142542;
        transition: .5s;
 
    }

    .container_accueil .btn-bouton a:hover::before {
        width: 100%;
        
    }

    .container_accueil .btn-bouton a:hover {
        color: #ff9956;
    }
    
    .container_accueil .container_image {
        position: absolute;
        top: 50%;
        width: 30%;
        right: 0;
        transform: translateY(-50%);
        object-fit: cover;
        max-height: 100%;
    }
    

    /* propos.php*/
    .container_page_propos {
        position: relative;
        max-width: 1000px;
        height: auto;
        border-radius: 6px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--blanc);
        flex: 1;
        z-index: 2;
    }

    .container_page_propos .container_textuel {
        width: 100%;
        height: 1300px;
    }   

    .container_page_propos .container_textuel > div {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-right'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-left'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }      

    .container_page_propos .histoire_eef {
        position: absolute;
        width: 400px;
        top: 100px;
        left: 0px;

    }
    
    .container_page_propos .container_titre_histoire_eef {
        font-size: 170%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: left;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_eef {
        width: 450px;
        font-size: 100%;
        line-height: 1.2;
        text-align: left;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .concept_original {
        position: absolute;
        width: 400px;
        top: 100px;
        right: 0px;

    }
    
    .container_page_propos .container_titre_concept_original {
        font-size: 170%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: left;
        color: #ff9956;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_concept_original {
        width: 400px;
        font-size: 100%;
        line-height: 1.2;
        text-align: left;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .histoire_de_ce_site {
        position: absolute;
        width: 500px;
        top: 650px;
        left: 0px;

    }
    
    .container_page_propos .container_titre_histoire_de_ce_site {
        font-size: 170%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: left;
        color: #ff34cb;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_de_ce_site {
        width: 600px;
        font-size: 100%;
        line-height: 1.2;
        text-align: left;
        font-family: "Poppins", sans-serif;
    }

    /*livre.php*/
    
    .wrapper_bibliotheque {
        font-family: FontBold;
        position: relative;
        width: 100%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        padding: 20px;
        margin: 50px 0;
        max-width: 1000px;
        border-radius: 6px;
        background-color: rgb(255, 255, 255);
        color: var(--gris-fonce);
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .info_bibliotheque {
        display: none;
    }

    .recherche-bibliotheque {
        margin-bottom: 40px;
    }
    
    .recherche {
        display: flex; 
        margin-left: 69%;
    }
    
    .recherche input[type="text"] {
        flex-grow: 1; 
        padding: 15px;
        outline: none;
        border: 1px solid var(--gris-fonce); 
        border-right: none;
        font-size: 16px;
    }
    
    .recherche button {
        background-color: var(--gris-fonce);
        color: white; 
        border: none; 
        padding: 10px 20px; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    
    .recherche button:hover {
        background-color: #313131; 
    }

    .wrapper_bibliotheque h1 {
        text-align: center;
        margin-bottom: 5%;
        margin-top: 5%;
        font-size: 170%;
    }

    .container_bibliotheque table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 20px;
        font-size: 85%;
    }

    .container_bibliotheque th, td {
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .container_bibliotheque th {
        background-color: #f2f2f2;
        position: sticky;
        top: 0; 
        z-index: 1;
    }

    .container_bibliotheque td a {
        text-decoration: none;
        color: var(--gris-fonce);
    }

    .container_bibliotheque td a:hover {
        color: #ff9956; 
    }

    .scrollable-table {
        max-height: 50vh; 
        overflow-y: auto;
    }

    .container_bibliotheque .auteur_responsive {
        display: none;
    }

    .container_bibliotheque  .pointvert,
    .pointrouge {
        aspect-ratio: 1 / 1; 
        height: 12.5px;
        border-radius: 50%;
        margin-right: 10px; 
    }

    .container_bibliotheque  .fond_status_vert {
        display: flex;
        align-items: center;
    }

    .container_bibliotheque  .fond_status_rouge {
        display: flex;
        align-items: center;
    }


    .container_bibliotheque table .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .fond_status_vert h4 {    
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .fond_status_rouge h4 {    
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .titre_livre {
        width: 35%;
    }

    .container_bibliotheque table .auteur_livre {
        width: 20%;
    }

    #genreHeader {
        cursor: pointer;
    }

    .dialog-box-genre {
        display: none;
        position: absolute;
        padding: 50px 20px 20px 20px;
        width: 350px;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        font-family: FontBold;
        border-radius: 6px;
        overflow: scroll;
        z-index: 2;
    }

    .close-boutton-genre {
        position: absolute;
        top: -5px;
        right: 10px;
        font-size: 170%;
        cursor: pointer;
        color: var(--gris-fonce);
    }

    .dialog-box-genre h5 {
        font-size: 85%;
        margin: 10px;
        color: var(--gris-fonce);
    }

    .genre_select {
        cursor: pointer;
    }

    .reset_filtres {
        margin-top: 20px;
        background-color: var(--gris-fonce);
        color: white;
        border: transparent;
        font-family: FontBold;
        font-size: 85%;
        padding: 10px;
        width: 100%;
        cursor: pointer;
        border-radius: 6px;
    }

    .reset_filtres:hover {
        cursor: pointer;
        background-color: #313131;
    }

    /*Livre_info.php*/

    .wrapper_info_livre {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wrapper_info {
        position: relative;
        width: 550px;
        height: auto;
        padding: 3%;
        margin: 10vh 0vh;
        border-radius: 6px;
        background-color: #ffffff;
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        z-index: 2;
    }

    .wrapper_info h1 {
        margin-top: 40px;
        font-size: 170%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info h2 {
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
        margin-bottom: 20px;
    }

    .wrapper_info p {
        margin-top: 5%;
        font-size: 110%;
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info .ligne {
        margin-top: 5%;
        border-bottom: solid 2px var(--gris-fonce);
    }

    .wrapper_info h3 {
        margin-top: 5%;
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
    }

    .fond_status_vert_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .fond_status_rouge_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .wrapper_info .pointvert,
    .pointrouge {
        width: 15px;
        aspect-ratio: 1 / 1; 
        border-radius: 50%;
        margin-right: 10px;
    }

    .wrapper_info .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .wrapper_info .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .fond_status_vert_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .fond_status_rouge_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }
    /* autres.php */

    .wrapper_autres {
        font-family: FontBold;
        position: relative;
        max-width: 1000px;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 50px 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .container_categorie_autres {
        position: relative;
        height: auto;
        margin-top: 70px;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img {
        position: absolute;
        padding: 2%;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre {
        position: absolute;
        width: 100%;
        height: 30%;
        bottom: 0;

    }

    .box_autres {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(400px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
    }

    .box_autres img {
        width: 70%;
        max-height: 70%;
        object-fit: contain;
    }

    .box_autres a {
        width: 100%;
        height: 100%;
    }

    .box_autres:hover {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    }


    /* autres_info.php */

    .wrapper_autres_info {
        font-family: FontBold;
        position: relative;
        max-width: 1000px;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 50px 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .wrapper_autres_info h1 {
        text-align: center;
        font-size: 170%;
        margin-top: 80px;
    }

    .container_categorie_info_autres {
        position: relative;
        height: auto;
        margin-top: 70px;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img_info {
        position: relative;
        padding: 2%;
        top: 0;
        width: 100%;
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre_info {
        position: relative;
        width: 100%;
        height: 15%;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .container_autres_box_titre_button_info {
        position: relative;
        width: 100%;
        height: 25%;
        bottom: 0;

    }

    .box_autres_info {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(400px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
    }

    .box_autres_info img {
        width: 70%;
        max-height: 90%;
        object-fit: contain;
    }

    .box_autres_info a {
        text-decoration: none;
        color: white;
        font-size: 18px;
    }

    .container_autres_box_titre_info h1 {
        text-align: center;
        color: var(--gris-fonce);
        margin-bottom: 10px;
    }

    .container_autres_box_titre_info h2 {
        text-align: center;
        font-size: 22.5px;
        color: var(--gris-fonce);

    }

    .boutton_box_info {
        position: absolute;
        text-align: center;
        width: 60%;
        left: 50%;
        top: 50%; 
        transform: translate(-50%, -50%); 
        padding: 7px;
        border-radius: 6px;
        color: var(--blanc);
        background-color: var(--gris-fonce);
        border: none;
    }

    .boutton_box_info:hover {
        background-color: #313131;
    }

}

@media only screen and (min-width: 1440px) {

    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    } 

    /*base*/
    .navbar {
        position: relative;
        display: flex;
        font-family: FontBold;
        justify-content: center;
        align-items: center;
        width: 100%;
        color: var(--blanc);
        padding: 30px 0;
        z-index: 5;
    }
    
    .container_navbar {
        max-width: 1380px;
        width: 100%; 
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto; 
    }
    
    .nav-lien {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    li {
        display: flex; 
        font-size: 100%;
        margin: 0 20px;
    } 

    li a {
        color: var(--blanc);
        text-decoration: none;
    } 

    li a:hover {
        border-bottom: 2px solid white;
    }

    .logo, .menu {
        font-size: 140%;
        font-family: GlacialIndifference;
    }

    .logo img {
        position: absolute;
        width: 150px;
        height: auto;
    }
    
    .menu {
        display: none;
    }

    .espace {
        display: none;
    }

    .espace_template {
        display: none;
    }

    .container_page {
        position: relative;
        height: 100vh;

    }

    /* connexion.php */

    .wrapper_connexion {
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        position: relative;
        width: 500px;
        height: 500px;
        border-radius: 6px;
        left: 50%; 
        top: 50%; 
        transform: translate(-50%, -50%);
        padding: 40px 70px;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .wrapper_connexion .back-button  {
        position: absolute;
        font-family: FontBold;
        top: 15px;
        left: 15px;
        color: var(--gris-fonce);
        font-size: 16px;
        text-decoration: none;
    }

    .wrapper_connexion h1 {
        color: var(--gris-fonce);
        font-size: 36px;
        text-align: center;
        margin-top: 60px;
    }

    .wrapper_connexion h2 {
        color: var(--gris-fonce);
        font-size: 16px;
        text-align: center;
    }

    .wrapper_connexion h3 {
        margin-top: 5px;
        color: #ec4949;
        font-size: 16px;
        text-align: center;
    }

    .wrapper_connexion .input-box {
        position: relative;
        width: 100%;
        height: 50px;
        margin: 30px 0;
    }

    .wrapper_connexion .input-box input {
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        border-bottom: 2px solid var(--gris-fonce);
        font-size: 18px;
        color: var(--gris-fonce);
        padding: 20px 45px 20px 20px;
    }

    .wrapper_connexion .input-box input ::placeholder {
        color: var(--gris-fonce);
    }

    .wrapper_connexion .input-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
    }

    .wrapper_connexion .btn {
        width: 100%;
        height: 45px;
        background-color: var(--gris-fonce);
        border: none;
        outline: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        color: #ffffff;
        font-weight: 600;
    }

    .wrapper_connexion .btn:hover {
        background-color: #313131;
    }

    
    /* first_connexion.php */

    .wrapper_first_connexion {
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        position: relative;
        width: 500px;
        height: 500px;
        border-radius: 6px;
        left: 50%; 
        top: 50%; 
        transform: translate(-50%, -50%);
        padding: 40px 70px;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .wrapper_first_connexion .back-button  {
        position: absolute;
        font-family: FontBold;
        top: 15px;
        left: 15px;
        color: var(--gris-fonce);
        font-size: 16px;
        text-decoration: none;
    }

    .wrapper_first_connexion h1 {
        color: var(--gris-fonce);
        font-size: 36px;
        text-align: center;
        margin-top: 60px;
    }

    .wrapper_first_connexion h2 {
        color: var(--gris-fonce);
        font-size: 16px;
        text-align: center;
    }

    .wrapper_first_connexion h3 {
        margin-top: 5px;
        color: #ec4949;
        font-size: 16px;
        text-align: center;
    }

    .wrapper_first_connexion .input-box {
        position: relative;
        width: 100%;
        height: 50px;
        margin: 30px 0;
    }

    .wrapper_first_connexion .input-box input {
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        border-bottom: 2px solid var(--gris-fonce);
        font-size: 18px;
        color: var(--gris-fonce);
        padding: 20px 45px 20px 20px;
    }

    .wrapper_first_connexion .input-box input ::placeholder {
        color: var(--gris-fonce);
    }

    .wrapper_first_connexion .input-box i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
    }

    .wrapper_first_connexion .btn {
        width: 100%;
        height: 45px;
        background-color: var(--gris-fonce);
        border: none;
        outline: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        color: #ffffff;
        font-weight: 600;
    }

    .wrapper_first_connexion .btn:hover {
        background-color: #313131;
    }

    /* index.php*/
    .container_accueil {
        position: relative;
        max-width: 1380px;
        height: 100%;
        border-radius: 6px;
        margin: 0 auto;
        color: var(--blanc);
        flex: 1;
        z-index: 2;
    }

    .container_accueil_element {
        position: relative;
        margin-top: 10vh;
    }

    .container_accueil .container_textuel  {
        width: 50%;
        height: auto;
    }

    .container_accueil .container_textuel > div {
        opacity: 0;
        transform: translateX(-600px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
    
    .container_accueil [data-aos='fade-right'].aos-animate .container_textuel > div {
        opacity: 1;
        transform: translateX(0);
    }
    
    
    .container_accueil .container_titre {
        font-size: 170%;
        font-family: FontBold;
        width: 80%;
        line-height: 1.2;
        text-align: left;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_accueil .container_paragraphe {
        font-size: 110%;
        line-height: 1.2;
        text-align: left;
        margin-bottom: 80px;
        font-family: "Poppins", sans-serif;
    }

    .container_accueil .btn-bouton {
        display: flex;
        width: 50%; 
        height: 50px;
        margin-bottom: 8%;
        gap: 20px;
    }

    .container_accueil .btn-bouton a {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40%;
        height: 100%;
        background-color: #ff9956;
        border: 1px solid #ff9956;
        border-radius: 6px;
        font-size: 100%;
        font-family: FontBold;
        color: #1f2733;
        text-decoration: none;
        letter-spacing: 1px;
        z-index: 1;
        overflow: hidden;
    }

    .container_accueil .btn-bouton a:nth-child(2) {
        background: transparent;
        border: 1px solid #fc66c9;
        color: #fc66c9;
    }

    .container_accueil .btn-bouton a:nth-child(2):hover {
        color: #1f2733;
    }

    .container_accueil .btn-bouton a:nth-child(2)::before {
        background: #fc66c9;
    }

    .container_accueil .btn-bouton a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        z-index: -1;
        background-color: #142542;
        transition: .5s;
 
    }

    .container_accueil .btn-bouton a:hover::before {
        width: 100%;
        
    }

    .container_accueil .btn-bouton a:hover {
        color: #ff9956;
    }
    
    .container_accueil .container_image {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        max-width: 30%;
        right: 0;
        object-fit: cover;
        max-height: 100%;
    }
    

    /* propos.php*/
    .container_page_propos {
        position: relative;
        max-width: 1380px;
        height: auto;
        border-radius: 6px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--blanc);
        z-index: 2;
        margin: 1% 0;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .container_page_propos .container_textuel {
        position: relative;
        width: 80%;
    }   

    .container_page_propos .container_textuel > div {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-right'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }
      
    .container_page_propos .container_textuel > div[data-aos='fade-left'].aos-animate {
        opacity: 1;
        transform: translateY(0);
    }      

    .container_page_propos .histoire_eef {
        width: 100%;
        left: 0px;
        margin-bottom: 3%;

    }
    
    .container_page_propos .container_titre_histoire_eef {
        font-size: 170%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: left;
        color: rgb(120, 250, 108);
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_eef {
        width: 40%;
        font-size: 100%;
        line-height: 1.2;
        text-align: left;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .concept_original {
        width: 100%;
        top: 360px;
        right: 100px;
        margin-bottom: 3%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;

    }
    
    .container_page_propos .container_titre_concept_original {
        font-size: 170%;
        width: 40%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: left;
        color: #ff9956;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_concept_original {
        width: 40%;
        font-size: 100%;
        line-height: 1.2;
        text-align: left;
        font-family: "Poppins", sans-serif;
    }

    .container_page_propos .histoire_de_ce_site {
        width: 100%;
        left: 0px;
        margin-bottom: 3%;

    }
    
    .container_page_propos .container_titre_histoire_de_ce_site {
        font-size: 170%;
        font-family: FontBold;
        line-height: 1.2;
        text-align: left;
        color: #ff34cb;
        margin-bottom: 40px;
    }
    
    .container_page_propos .container_paragraphe_histoire_de_ce_site {
        width: 40%;
        font-size: 100%;
        line-height: 1.2;
        text-align: left;
        font-family: "Poppins", sans-serif;
    }

    /*livre.php*/
    
    .wrapper_bibliotheque {
        font-family: FontBold;
        position: relative;
        width: 100%;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        padding: 20px;
        margin: 50px 0;
        max-width: 1380px;
        border-radius: 6px;
        background-color: rgb(255, 255, 255);
        color: var(--gris-fonce);
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .info_bibliotheque {
        display: none;
    }

    .recherche-bibliotheque {
        margin-bottom: 40px;
    }
    
    .recherche {
        display: flex; 
        margin-left: 69%;
    }
    
    .recherche input[type="text"] {
        flex-grow: 1; 
        padding: 15px;
        outline: none;
        border: 1px solid var(--gris-fonce); 
        border-right: none;
        font-size: 16px;
    }
    
    .recherche button {
        background-color: var(--gris-fonce);
        color: white; 
        border: none; 
        padding: 10px 20px; 
        cursor: pointer; 
        transition: background-color 0.3s; 
    }
    
    .recherche button:hover {
        background-color: #313131; 
    }

    .wrapper_bibliotheque h1 {
        text-align: center;
        margin-bottom: 5%;
        margin-top: 5%;
        font-size: 170%;
    }

    .container_bibliotheque table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 20px;
        font-size: 85%;
    }

    .container_bibliotheque th, td {
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .container_bibliotheque th {
        background-color: #f2f2f2;
        position: sticky;
        top: 0; 
        z-index: 1;
    }

    .container_bibliotheque td a {
        text-decoration: none;
        color: var(--gris-fonce);
    }

    .container_bibliotheque td a:hover {
        color: #ff9956; 
    }

    .scrollable-table {
        max-height: 50vh; 
        overflow-y: auto;
    }

    .container_bibliotheque  .pointvert,
    .pointrouge {
        aspect-ratio: 1 / 1; 
        height: 12.5px;
        border-radius: 50%;
        margin-right: 10px; 
    }

    .container_bibliotheque  .fond_status_vert {
        display: flex;
        align-items: center;
    }

    .container_bibliotheque  .fond_status_rouge {
        display: flex;
        align-items: center;
    }


    .container_bibliotheque table .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .fond_status_vert h4 {    
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .container_bibliotheque table .fond_status_rouge h4 {    
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }

    .container_bibliotheque table .titre_livre {
        width: 35%;
    }

    .container_bibliotheque table .auteur_livre {
        width: 20%;
    }

    #genreHeader {
        cursor: pointer;
    }

    .dialog-box-genre {
        display: none;
        position: absolute;
        padding: 50px 20px 20px 20px;
        width: 350px;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        font-family: FontBold;
        border-radius: 6px;
        overflow: scroll;
        z-index: 2;
    }

    .close-boutton-genre {
        position: absolute;
        top: -5px;
        right: 10px;
        font-size: 170%;
        cursor: pointer;
        color: var(--gris-fonce);
    }

    .dialog-box-genre h5 {
        font-size: 85%;
        margin: 10px;
        color: var(--gris-fonce);
    }

    .genre_select {
        cursor: pointer;
    }

    .reset_filtres {
        margin-top: 20px;
        background-color: var(--gris-fonce);
        color: white;
        border: transparent;
        font-family: FontBold;
        font-size: 85%;
        padding: 10px;
        width: 100%;
        cursor: pointer;
        border-radius: 6px;
    }

    .reset_filtres:hover {
        cursor: pointer;
        background-color: #313131;
    }

    /*Livre_info.php*/

    .wrapper_info_livre {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wrapper_info {
        position: relative;
        width: 550px;
        height: auto;
        padding: 3%;
        margin: 10vh 0vh;
        border-radius: 6px;
        background-color: #ffffff;
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
        z-index: 2;
    }

    .wrapper_info h1 {
        margin-top: 40px;
        font-size: 170%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info h2 {
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
        margin-bottom: 20px;
    }

    .wrapper_info p {
        margin-top: 5%;
        font-size: 110%;
        font-family: "Poppins", sans-serif;
        color: var(--gris-fonce);
        text-align: center;
    }

    .wrapper_info .ligne {
        margin-top: 5%;
        border-bottom: solid 2px var(--gris-fonce);
    }

    .wrapper_info h3 {
        margin-top: 5%;
        font-size: 130%;
        font-family: FontBold;
        color: var(--gris-fonce);
        text-align: right;
    }

    .fond_status_vert_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .fond_status_rouge_info {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .wrapper_info .pointvert,
    .pointrouge {
        width: 15px;
        aspect-ratio: 1 / 1; 
        border-radius: 50%;
        margin-right: 10px;
    }

    .wrapper_info .pointvert {
        background-color: rgb(81, 180, 106);
    }

    .wrapper_info .pointrouge {
        background-color: rgb(255, 9, 9);
    }

    .fond_status_vert_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(81, 180, 106);
    }

    .fond_status_rouge_info h4 {
        font-size: 110%;
        font-family: FontBold;
        color: rgb(255, 9, 9);
    }

    /* autres.php */

    .wrapper_autres {
        font-family: FontBold;
        position: relative;
        max-width: 1380px;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 50px 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .container_categorie_autres {
        position: relative;
        height: auto;
        margin-top: 70px;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img {
        position: absolute;
        padding: 2%;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre {
        position: absolute;
        width: 100%;
        height: 30%;
        bottom: 0;

    }

    .box_autres {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(400px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
    }

    .box_autres img {
        width: 70%;
        max-height: 70%;
        object-fit: contain;
    }

    .box_autres a {
        width: 100%;
        height: 100%;
    }


    .box_autres:hover {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    }


    /* autres_info.php */

    .wrapper_autres_info {
        font-family: FontBold;
        position: relative;
        max-width: 1380px;
        height: auto;
        left: 50%;
        transform: translateX(-50%); 
        color: var(--blanc);
        margin: 50px 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        z-index: 2;
    }

    .wrapper_autres_info h1 {
        text-align: center;
        font-size: 170%;
        margin-top: 80px;
    }

    .container_categorie_info_autres {
        position: relative;
        height: auto;
        margin-top: 70px;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        grid-gap: 20px; 
    }

    .container_autres_box_img_info {
        position: relative;
        padding: 2%;
        top: 0;
        width: 100%;
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .container_autres_box_titre_info {
        position: relative;
        width: 100%;
        height: 15%;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .container_autres_box_titre_button_info {
        position: relative;
        width: 100%;
        height: 25%;
        bottom: 0;

    }

    .box_autres_info {
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        aspect-ratio: 1 / 1; 
        max-height: calc(400px - 10px); 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        border-radius: 30px;
        background-color: rgb(242, 246, 248);
    }

    .box_autres_info img {
        width: 70%;
        max-height: 90%;
        object-fit: contain;
    }

    .box_autres_info a {
        text-decoration: none;
        color: white;
        font-size: 18px;
    }

    .container_autres_box_titre_info h1 {
        text-align: center;
        color: var(--gris-fonce);
        margin-bottom: 10px;
    }

    .container_autres_box_titre_info h2 {
        text-align: center;
        font-size: 22.5px;
        color: var(--gris-fonce);

    }

    .boutton_box_info {
        position: absolute;
        text-align: center;
        width: 60%;
        left: 50%;
        top: 50%; 
        transform: translate(-50%, -50%); 
        padding: 7px;
        border-radius: 6px;
        color: var(--blanc);
        background-color: var(--gris-fonce);
        border: none;
    }

    .boutton_box_info:hover {
        background-color: #313131;
    }

}