@font-face {
    font-family: 'Poppins';
    font-style: normal;
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-display: swap;
}

@media print {
    #header, #footer {
        display: none;
    }

    #pageNumberOV::after {
        content: 'Page ' counter(page);
    }
    .date-selection-print {
        display: none;
    }
}

body {
    font-family: "Poppins", sans-serif;
    color: #0c0c0c;
    background-color: #ffffff;
    overflow-x: hidden;
    overflow-y: scroll;
    zoom: 90%;
    counter-reset: page 1;
}

.page-break {
    page-break-after: always;
}

.layout_padding {
    padding: 90px 0;
}

.layout_padding2 {
    padding: 45px 0;
}

.layout_padding2-top {
    padding-top: 45px;
}

.layout_padding2-bottom {
    padding-bottom: 45px;
}

.layout_padding-top {
    padding-top: 90px;
}

.layout_padding-bottom {
    padding-bottom: 90px;
}

.long_section {
    margin-left: 45px;
    margin-right: 45px;
    padding-left: 15px;
    padding-right: 15px;
}

.heading_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

    .heading_container h2 {
        position: relative;
        font-weight: bold;
        text-transform: uppercase;
        color: #187d89;
    }

/*header section*/
.hero_area {
    min-height: 100vh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sub_page .hero_area {
    min-height: auto;
}

.header_section {
    background-color: #ffffff;
    border-bottom-style: groove;
    border-bottom-width: thin;
    margin-bottom: 25px;
}

    .header_section .container-fluid {
        padding-right: 25px;
        padding-left: 25px;
    }

    .header_section .nav_container {
        margin: 0 auto;
    }

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 3px 15px;
    margin: 10px 15px;
    color: #737578;
    text-align: center;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #187d89 !important;
}
/* Styles de base pour les liens */
nav.custom_nav-container ul li a {
    position: relative;
}

    /* Ligne sous les liens (invisibles au départ) */
    nav.custom_nav-container ul li a:after {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 0%;
        content: '.';
        color: transparent;
        background: #aaa;
        height: 1px;
        transition: width 0.3s ease; /* Ajoutez une transition pour une animation fluide */
    }

    /* Lorsque vous survolez un lien, la ligne se développe */
    nav.custom_nav-container ul li a:hover:after {
        width: 100%;
        background: #187d89; /* Couleur de fond au moment du survol */
    }
a,
a:hover,
a:focus {
    text-decoration: none;
    color: #737578;
}

    a:hover,
    a:focus {
        color: #187d89;
    }

.btn,
.btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.custom_nav-container .nav_search-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
}

.navbar-brand span {
    font-size: 24px;
    font-weight: 700;
    color: #737578;
    text-transform: uppercase;
}

.custom_nav-container {
    z-index: 9998;
    padding: 5px 0;
}

    .custom_nav-container .navbar-toggler {
        outline: none;
    }

    .custom_nav-container .navbar-toggler {
        padding: 0;
        width: 20px;
        height: 20px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        border: none;
        color: transparent;
    }

        .custom_nav-container .navbar-toggler span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #737578;
            border-radius: 15px;
            margin: 7px 0;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
            position: relative;
            transition: all 0.3s;
        }

            .custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
                content: "";
                position: absolute;
                left: 0;
                height: 100%;
                width: 100%;
                background-color: #737578;
                border-radius: 15px;
                top: -10px;
                -webkit-transition: all 0.3s;
                transition: all 0.3s;
            }

            .custom_nav-container .navbar-toggler span::after {
                top: 10px;
            }

        .custom_nav-container .navbar-toggler[aria-expanded="true"] {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }

            .custom_nav-container .navbar-toggler[aria-expanded="true"] span {
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }

                .custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
                    -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
                    top: 0;
                }

.quote_btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .quote_btn-container a {
        color: #737578;
        margin-right: 25px;
        text-transform: uppercase;
    }

        .quote_btn-container a span {
            margin-right: 5px;
        }

/* Style du logo dans la navbar */
#logo-navbar {
    max-width: 170px; /* Spécifiez la largeur maximale souhaitée */
    height: auto; /* La hauteur s'ajustera automatiquement en maintenant les proportions originales */
}

.fixed-header {
    position: fixed;
    top: 0;
    z-index: 9999;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    margin-left: 45px;
    margin-right: 45px;
    margin-bottom: 25px;
}

/*end header section*/
/* slider section */
.slider_section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-color: #f9fafa;
}

    .slider_section .row {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .slider_section #customCarousel {
        width: 100%;
        z-index: 3;
    }

    .slider_section .detail-box {
        color: #000000;
    }

        .slider_section .detail-box h1 {
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 0;
        }

        .slider_section .detail-box p {
            margin: 25px 0;
        }

        .slider_section .detail-box .btn-box {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            margin: 0 -5px;
        }

            .slider_section .detail-box .btn-box a {
                margin: 5px;
                text-align: center;
                width: 165px;
            }

            .slider_section .detail-box .btn-box .btn1 {
                display: inline-block;
                padding: 10px 15px;
                background-color: #737578;
                color: #ffffff;
                border-radius: 0;
                border: 1px solid #737578;
                -webkit-transition: all .2s;
                transition: all .2s;
            }

                .slider_section .detail-box .btn-box .btn1:hover {
                    background-color: transparent;
                    color: #737578;
                }

            .slider_section .detail-box .btn-box .btn2 {
                display: inline-block;
                padding: 10px 15px;
                background-color: #187d89;
                color: #ffffff;
                border-radius: 0;
                border: 1px solid #187d89;
                -webkit-transition: all .2s;
                transition: all .2s;
            }

                .slider_section .detail-box .btn-box .btn2:hover {
                    background-color: transparent;
                    color: #187d89;
                }

    .slider_section .img-box img {
        width: 100%;
    }

    .slider_section .carousel-indicators {
        list-style-type: none; /* Supprimer le style de liste par défaut */
        padding-left: 0; /* Supprimer le padding par défaut sur la gauche */
        position: unset;
        margin: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 45px;
    }

        .slider_section .carousel-indicators li {
            background-color: #737578;
            width: 12px;
            height: 12px;
            border-radius: 100%;
            opacity: 1;
            text-indent: -9999px !important; /* Cela masque les numéros */
            display: inline-block; /* Assurez-vous qu'ils sont en ligne */
        }

            .slider_section .carousel-indicators li.active {
                width: 17px;
                height: 17px;
                background-color: #187d89;
            }


.furniture_section .box {
    margin-top: 45px;
    background-color: #f7fafa;
    padding: 25px;
    border-radius: 5px;
}

    .furniture_section .box .img-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 275px;
        padding: 25px;
    }

        .furniture_section .box .img-box img {
            max-width: 100%;
            max-height: 100%;
        }

    .furniture_section .box .detail-box {
        margin-top: 15px;
    }

        .furniture_section .box .detail-box h5 {
            text-transform: uppercase;
            font-size: 18px;
            color: #737578;
        }

        .furniture_section .box .detail-box .price_box {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
        }

            .furniture_section .box .detail-box .price_box .price_heading {
                margin-bottom: 0;
            }

                .furniture_section .box .detail-box .price_box .price_heading span {
                    color: #187d89;
                }

            .furniture_section .box .detail-box .price_box a {
                color: #187d89;
                text-transform: uppercase;
                font-size: 15px;
            }

    .furniture_section .box:hover {
        -webkit-box-shadow: 0 0 15px 0 #187d89;
        box-shadow: 0 0 15px 0 #187d89;
    }

.about_section {
    background-color: #f9fafa;
}

    .about_section .row {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .about_section .img-box img {
        width: 100%;
    }

    .about_section .detail-box p {
        margin-top: 10px;
        margin-bottom: 35px;
    }

    .about_section .detail-box a {
        display: inline-block;
        padding: 10px 45px;
        background-color: #187d89;
        color: #ffffff;
        border-radius: 0;
        border: 1px solid #187d89;
        -webkit-transition: all .2s;
        transition: all .2s;
    }

        .about_section .detail-box a:hover {
            background-color: transparent;
            color: #187d89;
        }

.blog_section .heading_container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .blog_section .heading_container h2::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

.blog_section .box {
    margin-top: 55px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

    .blog_section .box .img-box {
        position: relative;
    }

        .blog_section .box .img-box img {
            width: 100%;
        }

    .blog_section .box .detail-box {
        padding: 25px;
    }

        .blog_section .box .detail-box h5 {
            font-weight: bold;
        }

        .blog_section .box .detail-box p {
            font-size: 15px;
            color: #444;
        }

        .blog_section .box .detail-box a {
            display: inline-block;
            padding: 10px 30px;
            background-color: #187d89;
            color: #ffffff;
            border-radius: 0;
            border: 1px solid #187d89;
            -webkit-transition: all .2s;
            transition: all .2s;
        }

            .blog_section .box .detail-box a:hover {
                background-color: transparent;
                color: #187d89;
            }

.client_section .heading_container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.client_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 45px;
    padding: 35px 25px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}

    .client_section .box .img-box {
        border-radius: 100%;
        border: 10px solid #187d89;
        margin-right: 25px;
        min-width: 175px;
        max-width: 175px;
        overflow: hidden;
    }

        .client_section .box .img-box img {
            width: 100%;
        }

    .client_section .box .detail-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

        .client_section .box .detail-box .name {
            text-align: center;
        }

            .client_section .box .detail-box .name img {
                width: 25px;
                margin-bottom: 5px;
            }

            .client_section .box .detail-box .name h6 {
                color: #187d89;
                font-size: 20px;
            }

.client_section .carousel_btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
    position: unset;
    width: 45px;
    height: 45px;
    border: none;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    background-color: #737578;
    background-position: center;
    border-radius: 100%;
    margin: 0 2.5px;
}

    .client_section .carousel-control-prev:hover,
    .client_section .carousel-control-next:hover {
        background-color: #187d89;
    }

.client_section .carousel-control-next {
    left: initial;
}

.contact_section {
    position: relative;
    background-color: #f9fafa;
    padding-top: 75px;
    padding-bottom: 75px;
}

    .contact_section .heading_container {
        margin-bottom: 25px;
    }

        .contact_section .heading_container h2 {
            text-transform: uppercase;
            color: #187d89;
        }

    .contact_section .form_container input,
    .contact_section .form_container textarea,
    .contact_section .form_container select {
        width: 100%;
        border: none;
        height: 50px;
        margin-bottom: 25px;
        padding-left: 15px;
        outline: none;
        color: dimgrey;
        -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
    }

        .contact_section .form_container textarea.message-box {
            height: 120px;
            resize: none;
        }

    .contact_section .form_container button {
        border: none;
        text-transform: uppercase;
        display: inline-block;
        padding: 12px 55px;
        background-color: #187d89;
        color: #ffffff;
        border-radius: 0px;
        border: 1px solid #187d89;
        -webkit-transition: all .2s;
        transition: all .2s;
        width: 100%;
    }

        .contact_section .form_container button:hover {
            background-color: transparent;
            color: #187d89;
        }

    .contact_section .map_container {
        height: 500px;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        padding: 0;
    }

        .contact_section .map_container .map {
            height: 100%;
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
        }

            .contact_section .map_container .map #googleMap {
                height: 100%;
            }

.info_section {
    background-color: #191e1f;
    color: #ffffff;
    padding-top: 45px;
    padding-bottom: 45px;
}

    .info_section .contact_nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 25px 0;
        text-align: center;
    }

        .info_section .contact_nav a {
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            margin: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            color: #ffffff;
        }

            .info_section .contact_nav a i {
                font-size: 28px;
            }

            .info_section .contact_nav a:hover {
                color: #187d89;
            }

    .info_section .info_top {
        padding: 45px 0;
    }

    .info_section h4 {
        text-transform: uppercase;
        position: relative;
        margin-bottom: 25px;
    }

    .info_section .info_links .info_links_menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .info_section .info_links .info_links_menu a {
            color: #ffffff;
            flex-basis: 50%;
        }

            .info_section .info_links .info_links_menu a:hover, .info_section .info_links .info_links_menu a.active {
                color: #187d89;
            }

    .info_section .info_post .post_box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .info_section .info_post .post_box .img-box {
            min-width: 65px;
            max-width: 65px;
            height: 65px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            background-color: #ffffff;
            flex-basis: calc(33% - 10px);
            padding: 10px;
            margin: 5px;
        }

            .info_section .info_post .post_box .img-box img {
                max-width: 100%;
                max-height: 100%;
            }

        .info_section .info_post .post_box p {
            margin: 0;
        }

        .info_section .info_post .post_box:not(:nth-last-child(1)) {
            margin-bottom: 15px;
        }

    .info_section .info_form input {
        width: 100%;
        border: none;
        height: 45px;
        margin-bottom: 15px;
        padding-left: 25px;
        background-color: #eaeaea;
        outline: none;
        color: #101010;
    }

    .info_section .info_form button {
        display: inline-block;
        padding: 10px 45px;
        background-color: #187d89;
        color: #ffffff;
        border-radius: 0px;
        border: 1px solid #187d89;
        -webkit-transition: all .2s;
        transition: all .2s;
    }

        .info_section .info_form button:hover {
            background-color: transparent;
            color: #187d89;
        }

    .info_section .info_form .social_box {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 25px;
    }

        .info_section .info_form .social_box a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            border-radius: 5px;
            width: 45px;
            height: 45px;
            border: 1px solid #187d89;
            color: #187d89;
            font-size: 18px;
            margin-right: 10px;
        }

            .info_section .info_form .social_box a:hover {
                color: white;
                border-color: white;
            }

/* footer section*/
.footer_section {
    text-align: center;
    border-top-style: groove;
    border-top-width: thin;
    margin-top: 25px;
}

    .footer_section p {
        color: #737578;
        padding: 25px 0;
        margin: 0;
    }

        .footer_section p a {
            color: inherit;
        }

    .footer_section a:hover {
        color: #187d89; /* couleur au survol identique à celle de la navbar */
    }
/*# sourceMappingURL=style.css.map */

/*--------------Login Model-------------------*/
.login-body {
    background: url("/images/login-background.jpg") no-repeat center center fixed;
    background-size: cover;
    opacity: 0.95;
}
/* Conteneur principal */
.login-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
    width: 500px;
    height: auto;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 20%; /* Ajoutez une marge supérieure appropriée pour éviter le chevauchement */
    margin-bottom: 10%;
}

    /* Titre de la page */
    .login-container h1 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #333;
    }

    /* Formulaire */
    .login-container form {
        display: flex;
        flex-direction: column;
    }

/* Champ de formulaire */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
        color: #555;
    }

.form-control:not([type="button"]):not([type="submit"]):not([type="reset"]),
.form-control select {
    width: 100% !important;
    padding: 5px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    color: #737578 !important;
}

input[readonly],
/* Ajout du sélecteur pour les champs désactivés */
input:disabled,
select[readonly], select:disabled {
    background-color: #e0e0e0 !important; /* Gris clair */
    cursor: not-allowed;
    border: none; /* Supprime la bordure */
}

    input[readonly]:focus,
    input:disabled:focus,
    select[readonly]:focus,
    select:disabled:focus,
    textarea[readonly]:focus,
    textarea:disabled:focus {
        background-color: #e0e0e0 !important; /* Gris clair */
        cursor: not-allowed;
        border: none; /* Supprime la bordure */
    }


.form-control:not([type="button"]):not([type="submit"]):not([type="reset"]):focus,
.form-control select:focus {
    outline: none !important;
    border-color: #187d89 !important;
    box-shadow: 0 0 5px #187d89 !important;
    color: #737578 !important;
}

.form-group input[readonly],
.form-group textarea[readonly],
.form-group select[readonly],
/* Ajout du sélecteur pour les champs désactivés */
input:disabled,
textarea:disabled,
select:disabled {
    background-color: #e0e0e0 !important; /* C'est une couleur grise, ajustez selon vos préférences */
    border: none; /* Supprime la bordure */
}


.form-group input[type="checkbox"] {
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #737578;
}

    .form-group input[type="checkbox"]:checked {
        background-color: #187d89;
    }

    .form-group input[type="checkbox"]:focus {
        outline: none; /* Supprime l'outline par défaut du navigateur */
        border-color: #187d89; /* Définit la couleur de la bordure à vert */
        box-shadow: 0 0 5px #187d89; /* Ajoute un léger flou pour un effet visuel */
        color: #737578;
    }
/* Liens */
.login-container a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

/* Alerte */
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: bold;
}

.custom-color-text {
    color: #187d89 !important;
}

.custom-color-text2 {
    color: #737578 !important;
}
/* Styles pour la table */
.table-container {
    width: 100%;
    max-height: 600px; /* Ajustez cette valeur selon vos besoins */
    overflow-y: auto;
    overflow-x: auto;
}
.table-coherent {
    width: 100%;
    border-collapse: collapse;
    color: #737578;
    margin: 0;
    font-size: 14px;
}

    .table-coherent thead tr th {
        position: sticky;
        top: 0;
        background-color: #f5f5f5;
        z-index: 101;
        border: 0px solid #eaeaea; /* Assurez-vous que toutes les cellules ont des bordures */
        box-shadow: inset 0 0px 0 #737578, inset 0px 0 0 #737578; /* Simuler une bordure bas et droite */
    }

    .table-coherent th, .table-coherent td {
        padding: 15px 20px;
        border: 1px solid #eaeaea;
        text-align: center;
        white-space: nowrap; /* Empêche les retours à la ligne automatiques */
    }

    .table-coherent th {
        background-color: #f5f5f5;
        font-weight: bold;
        color: #187d89;
        text-transform: uppercase;
    }

    .table-coherent tbody tr:nth-child(even) {
        background-color: #f9fafa;
    }

    .table-coherent tbody tr:hover {
        background-color: #e6f7f9;
        cursor: pointer;
    }

    .table-coherent a {
        color: #187d89;
    }

        .table-coherent a:hover {
            text-decoration: underline;
        }
.tableau-fixe th, .tableau-fixe td {
    border: 0px solid #eaeaea; /* Assurez-vous que toutes les cellules ont des bordures */
}
.tableau-fixe th, .tableau-fixe td {
    box-shadow: inset 0 -1px 0 #eaeaea, inset 1px 0 0 #eaeaea; /* Simuler une bordure bas et droite */
}

    .tableau-fixe th.colonne-fixe-1 {
        position: sticky;
        left: 0;
        z-index: 1000;
        width: 100px;
        background-color: #f5f5f5;
    }

    .tableau-fixe td.colonne-fixe-1 {
        position: sticky;
        left: 0;
        z-index: 100;
        width: 100px;
        background-color: white;
    }
    .tableau-fixe tr:nth-child(even) td.colonne-fixe-1 {
        background-color: #f9fafa;
    }
    .tableau-fixe tr:hover td.colonne-fixe-1 {
        background-color: #e6f7f9;
        cursor: pointer;
    }
    .tableau-fixe th.colonne-fixe-2 {
        position: sticky;
        left: 100px;
        z-index: 1000;
        width: 100px;
        background-color: #f5f5f5;
    }

    .tableau-fixe td.colonne-fixe-2 {
        position: sticky;
        left: 100px;
        z-index: 100;
        background-color: white;
    }
    .tableau-fixe tr:nth-child(even) td.colonne-fixe-2 {
        background-color: #f9fafa;
    }
    .tableau-fixe tr:hover td.colonne-fixe-2 {
        background-color: #e6f7f9;
        cursor: pointer;
    }
    .tableau-fixe th.colonne-fixe-3 {
        position: sticky;
        left: 200px;
        z-index: 1000;
        width: 100px;
        background-color: #f5f5f5;
    }

    .tableau-fixe td.colonne-fixe-3 {
        position: sticky;
        left: 200px;
        z-index: 100;
        background-color: white;
    }
    .tableau-fixe tr:nth-child(even) td.colonne-fixe-3 {
        background-color: #f9fafa;
    }
    .tableau-fixe tr:hover td.colonne-fixe-3 {
        background-color: #e6f7f9;
        cursor: pointer;
    }
.table-page {
    margin-left: 45px;
    margin-right: 45px;
    padding-left: 15px;
    padding-right: 15px;
}

    .table-page h1 {
        text-transform: uppercase;
    }

.btn-coherent {
    background-color: #187d89;
    color: #ffffff;
    padding: 6px 12px; /* Réduit le padding pour avoir des boutons plus petits */
    border-radius: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin: 2px; /* Ajout de marges autour des boutons */
}

    .btn-coherent:hover {
        background-color: #0c5c63 !important;
        color: #ffffff !important;
    }
    /* Style pour le bouton lorsqu'il est désactivé */
    .btn-coherent[disabled] {
        background-color: #A9A9A9; /* Gris */
        color: #C0C0C0; /* Gris clair */
        cursor: not-allowed;
        pointer-events: none; /* Assurez-vous que les événements de la souris ne sont pas déclenchés */
    }

.btn-coherent-outline {
    background-color: transparent;
    color: #187d89;
    padding: 6px 12px; /* Réduit le padding pour avoir des boutons plus petits */
    border-radius: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid #187d89;
    cursor: pointer;
    margin: 2px; /* Ajout de marges autour des boutons */
}

    .btn-coherent-outline:hover {
        background-color: #187d89;
        color: #ffffff;
    }

.btn-danger {
    background-color: #ff0000; /* Utilisation d'une couleur rouge standard */
    color: #ffffff;
    padding: 6px 12px; /* Réduit le padding pour avoir des boutons plus petits */
    border-radius: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin: 2px; /* Ajout de marges autour des boutons */
}

    .btn-danger:hover {
        background-color: #cc0000; /* Une nuance de rouge plus foncée au survol */
        color: #ffffff;
    }

.btn-danger-outline {
    background-color: transparent;
    color: #ff0000; /* Utilisation d'une couleur rouge standard */
    padding: 6px 12px; /* Réduit le padding pour avoir des boutons plus petits */
    border-radius: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid #ff0000; /* Bordure rouge */
    cursor: pointer;
    margin: 2px; /* Ajout de marges autour des boutons */
}

    .btn-danger-outline:hover {
        background-color: #ff0000; /* Utilisation d'une couleur rouge standard */
        color: #ffffff;
    }

.btn-disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
    color: #737578 !important;
    border: 1px solid #737578 !important;
}

.search-section {
    margin: 0 auto; /* Centrer la section */
    background-color: #f5f5f5; /* Couleur grise */
    padding: 20px; /* Espacement intérieur pour éloigner le contenu des bords */
    border-radius: 10px; /* Coins arrondis pour une meilleure apparence */
    margin-bottom: 45px;
}

.search-toggle-container {
    margin-bottom: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

    .pagination .page-item .page-link {
        border: 1px solid #187d89;
        color: #187d89;
        background-color: white;
        margin: 0 2px;
        padding: 5px 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .pagination .page-item .page-link:hover,
        .pagination .page-item.active .page-link {
            background-color: #187d89;
            color: white;
        }

    .pagination .page-item.disabled .page-link {
        cursor: not-allowed;
        opacity: 0.6;
        background-color: transparent; /* Pour s'assurer qu'il n'y a pas de couleur d'arrière-plan */
    }


/*Admin Section*/

.admin_section .box {
    margin-top: 45px;
    background-color: #f7fafa;
    padding: 25px;
    border-radius: 5px;
}

    .admin_section .box .img-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 275px;
        padding: 25px;
    }

        .admin_section .box .img-box i {
            font-size: 50px;
            color: #737578;
        }

        .admin_section .box .img-box img {
            max-width: 100%;
            max-height: 100%;
        }

    .admin_section .box .detail-box {
        margin-top: 15px;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Align items in the center */
    }

        .admin_section .box .detail-box h5 {
            text-transform: uppercase;
            font-size: 16px;
            color: #737578;
            margin: 0; /* Remove margin */
        }

        .admin_section .box .detail-box span {
            color: #187d89;
        }

        .admin_section .box .detail-box a {
            color: #187d89;
            text-transform: uppercase;
            font-size: 15px;
        }

    .admin_section .box:hover {
        -webkit-box-shadow: 0 0 15px 0 #187d89;
        box-shadow: 0 0 15px 0 #187d89;
        background-color: #187d89;
    }

        .admin_section .box:hover .img-box i,
        .admin_section .box:hover .detail-box h5 {
            color: white;
        }

.company_header {
    background-color: #f4f4f4; /* Une couleur d'arrière-plan douce */
    padding: 10px 0; /* Espace au-dessus et en dessous du texte */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Une ombre douce pour donner de la profondeur */
    margin-left: 45px;
    margin-right: 45px;
}

.header_container h1 {
    margin: 0; /* Retirez toute marge pour que le padding soit respecté */
    font-size: 1.5em; /* Une taille de police plus grande pour mettre en évidence */
    color: #737578; /* Une couleur de police plus sombre pour la lisibilité */
    text-transform: uppercase;
    font-size: 24px;
}

/*toggle code*/

.switch {
    position: relative !important;
    height: 1.2rem !important;
    width: 2.5rem !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    border-radius: 9999px !important;
    background-color: rgba(115, 117, 120, 0.377) !important;
    transition: all .3s ease !important;
    margin-right: 10px;
}

    .switch:checked {
        background-color: rgba(24, 125, 137, 1) !important;
    }

    .switch::before {
        position: absolute !important;
        content: "" !important;
        left: calc(1.2rem - 1.3rem) !important;
        top: calc(1.2rem - 1.3rem) !important;
        display: block !important;
        height: 1.3rem !important;
        width: 1.3rem !important;
        cursor: pointer !important;
        border: 1px solid rgba(115, 117, 120, 0.527) !important;
        border-radius: 9999px !important;
        background-color: rgba(255, 255, 255, 1) !important;
        box-shadow: 0 3px 10px rgba(115, 117, 120, 0.327) !important;
        transition: all .3s ease !important;
    }

    .switch:hover::before {
        box-shadow: 0 0 0px 8px rgba(0, 0, 0, .15) !important
    }

    .switch:checked:hover::before {
        box-shadow: 0 0 0px 8px rgba(24, 125, 137, .15) !important
    }

    .switch:checked:before {
        transform: translateX(100%) !important;
        border-color: rgba(24, 125, 137, 1) !important;
    }

.initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    font-weight: bold;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    font-size: 100px;
    color: #737578; /* Ajustez cette taille en fonction de la manière dont les initiales s'affichent dans le cercle */
}
/*Delete Page*/

/* Styles pour le fond semi-transparent */
.modal-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

    .modal-background .card {
        position: fixed;
        background-color: #fff;
        text-align: left;
        border-radius: 0.5rem;
        max-width: 290px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        z-index: 10000;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .modal-background .header {
        padding: 1.25rem 1rem 1rem 1rem;
        background-color: #ffffff;
    }

    .modal-background .image {
        display: flex;
        margin-left: auto;
        margin-right: auto;
        background-color: #FEE2E2;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 9999px;
    }

        .modal-background .image svg {
            color: #DC2626;
            width: 1.5rem;
            height: 1.5rem;
        }

    .modal-background .content {
        margin-top: 0.75rem;
        text-align: center;
    }

    .modal-background .title {
        color: #111827;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5rem;
    }

    .modal-background .message {
        margin-top: 0.5rem;
        color: #6B7280;
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .modal-background .actions {
        margin: 0.75rem 1rem;
        background-color: #F9FAFB;
    }

    .modal-background .desactivate {
        display: inline-flex;
        padding: 0.5rem 1rem;
        background-color: #DC2626;
        color: #ffffff;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 500;
        justify-content: center;
        width: 100%;
        border-radius: 0.375rem;
        border-width: 1px;
        border-color: transparent;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

        .modal-background .desactivate:hover {
            background-color: #cc0000; /* Une nuance de rouge plus foncée au survol */
            color: #ffffff;
        }

    .modal-background .cancel {
        display: inline-flex;
        margin-top: 0.75rem;
        padding: 0.5rem 1rem;
        background-color: #ffffff;
        color: #737578;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 500;
        justify-content: center;
        width: 100%;
        border-radius: 0.375rem;
        border: 1px solid #D1D5DB;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    }

        .modal-background .cancel:hover {
            border-color: #187d89;
            color: #187d89;
        }

.custom-alert {
    padding: 15px;
    background-color: #dff0d8;
    color: #468847;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

    .custom-alert button.close {
        background: transparent;
        border: 0;
        float: right;
        color: #468847;
        font-size: 20px;
        line-height: 1;
        opacity: 0.7;
        margin-top: -2px;
        margin-right: -5px;
    }

        .custom-alert button.close:hover {
            opacity: 1;
        }

.alert-danger button.close {
    background: transparent;
    border: 0;
    float: right;
    color: #a9a9a9;
    font-size: 20px;
    line-height: 1;
    opacity: 0.7;
    margin-top: -2px;
    margin-right: -5px;
}

    .alert-danger button.close:hover {
        opacity: 1;
    }

/* Conteneur de l'aperçu d'image */
.ProfilePicture .image-preview-container {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #187d89;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3f2ef; /* Couleur de fond par défaut */
}

/* Aperçu d'image */
#imagePreview {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Conteneur des initiales */
.initials-container {
    font-size: 80px;
    color: #187d89;
    font-weight: bold;
}

/* Input de fichier caché 
input[type="file"] {
    display: none;
}*/

/* Bouton pour ajouter/modifier la photo */
.ProfilePicture .change-photo-btn {
    position: absolute;
    top: 90%;
    left: 50%;
    height: 30%;
    width: 100%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 14px;
    padding: 3px 6px;
    cursor: pointer;
    display: none;
    text-align: center;
    align-items: center; /* Centrer l'icône et le texte verticalement */
    justify-content: center; /* Centrer l'icône et le texte horizontalement */
}
    /* Style pour l'icône à l'intérieur du bouton */
    .ProfilePicture .change-photo-btn i {
        margin-right: 5px; /* Espacement entre l'icône et le texte */
    }




.ProfilePicture .image-preview-container:hover .change-photo-btn {
    display: block; /* affiché au survol */
}

/* card */
.ProfilePicture .card {
    --main-color: #fff;
    --submain-color: #737578;
    --bg-color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: relative;
    width: 100%; /* initialement à 100% pour être adaptable */
    max-width: 400px; /* largeur maximale de 400px */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: var(--bg-color);
    z-index: 1;
    top: 200px;
    /* ici */
    text-align: left;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ProfilePicture .card__img {
    height: 50%;
    width: 100%;
}

    .ProfilePicture .card__img svg {
        height: 100%;
        border-radius: 20px 20px 0 0;
    }

.ProfilePicture .card__avatar {
    position: absolute;
    width: 50%; /* ajuste à 50% pour le mobile */
    max-width: 150px; /* largeur maximale de 200px */
    height: auto;
    background: var(--main-color);
    border: 2px solid var(--submain-color);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: calc(25% - 0px); /* ajustement pour éviter le chevauchement */
}

/* Card responsivity */
@media screen and (max-width: 767px) {
    .ProfilePicture {
        margin-bottom: 30px; /* ajouter un padding pour éviter que le contenu touche le bas */
    }

        .ProfilePicture .card {
            height: 80%; /* hauteur automatique pour s'adapter au contenu */
            margin-top: auto; /* ajouter un padding pour éviter que le contenu touche le bas */
            margin-bottom: auto; /* ajouter un padding pour éviter que le contenu touche le bas */
        }

        .ProfilePicture .card__img {
            height: 50%;
            width: 100%;
        }

            .ProfilePicture .card__img svg {
                height: 100%;
            }
}
/* Media query pour les écrans de taille moyenne (par exemple tablettes) */
@media screen and (min-width: 768px) {
    .ProfilePicture .card__avatar {
        width: 150px; /* revient à 200px pour les écrans plus grands */
    }
}

.ProfilePicture .card__title, .card__subtitle {
    text-align: center; /* centrage du texte pour une meilleure apparence sur mobile */
}

.ProfilePicture .card__title {
    margin-top: 100px;
    font-weight: 500;
    font-size: 18px;
    color: #187d89;
}

.ProfilePicture .card__subtitle {
    margin-top: 0px;
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 16px;
    color: var(--submain-color);
}

@media screen and (max-width: 767px) {

    .ProfilePicture .card__title {
    }

    .ProfilePicture .card__subtitle {
    }
}

.ProfilePicture .card__btn {
    margin-top: 15px;
    width: 76px;
    height: 31px;
    border: 2px solid var(--submain-color);
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    color: var(--main-color);
    background: var(--bg-color);
    text-transform: uppercase;
    transition: all 0.3s;
}

.ProfilePicture .card__btn-solid {
    background: var(--submain-color);
    color: var(--main-color);
}

.ProfilePicture .card__btn:hover {
    background: var(--submain-color);
    color: var(--main-color);
}

.ProfilePicture .card__btn-solid:hover {
    background: var(--main-color);
    color: var(--bg-color);
}

.user-profile-thumbnail {
    width: 30px; /* or the size you want */
    height: 30px; /* or the size you want */
    border-radius: 50%; /* makes it round */
    object-fit: cover; /* ensures the image covers the area without stretching */
    border: 2px solid #187d89;
}

img {
    max-width: 100%;
    height: auto;
}

.LogoPicture .change-photo-btn {
    position: absolute;
    top: 90%;
    left: 50%;
    height: 30%;
    width: 100%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 14px;
    padding: 3px 6px;
    cursor: pointer;
    display: none;
    text-align: center;
    align-items: center; /* Centrer l'icône et le texte verticalement */
    justify-content: center; /* Centrer l'icône et le texte horizontalement */
}
    /* Style pour l'icône à l'intérieur du bouton */
    .LogoPicture .change-photo-btn i {
        margin-right: 5px; /* Espacement entre l'icône et le texte */
    }




.LogoPicture .image-preview-container:hover .change-photo-btn {
    display: block; /* affiché au survol */
}

/* card */
.LogoPicture {
    margin-bottom: 30px; /* ajouter un padding pour éviter que le contenu touche le bas */
}
.LogoPicture .card {
    --main-color: #fff;
    --submain-color: #737578;
    --bg-color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: relative;
    width: 100%; /* initialement à 100% pour être adaptable */
    max-width: 400px; /* largeur maximale de 400px */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* aligne verticalement au centre */
    background: var(--bg-color);
    z-index: 1;
    /* Pour centrer horizontalement dans le conteneur parent */
    margin-left: auto;
    margin-right: auto;
    border: none; /* Assurez-vous qu'il n'y a pas de bordure */
}

.LogoPicture .card__avatar {
    position: absolute;
    width: 100%; /* ajuste à 50% pour le mobile */
    max-width: 200px; /* largeur maximale de 200px */
    height: auto;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    top: calc(25% - 0px); /* ajustement pour éviter le chevauchement */
}
/* Card responsivity */
@media screen and (max-width: 767px) {
    .LogoPicture {
        margin-bottom: 30px; /* ajouter un padding pour éviter que le contenu touche le bas */
    }

        .LogoPicture .card {
            height: 100%; /* hauteur automatique pour s'adapter au contenu */
        }
}

.LogoPicture .card__title, .card__subtitle {
    text-align: center; /* centrage du texte pour une meilleure apparence sur mobile */
}

.LogoPicture .card__title {
    margin-top: 100px;
    font-weight: 500;
    font-size: 24px;
    color: #187d89;
}

.LogoPicture .card__subtitle {
    margin-top: 0px;
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 16px;
    color: var(--submain-color);
}
.LogoPicture .image-preview-container {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white; /* Couleur de fond par défaut */
    border: 1px solid #737578;
    padding:10px;
}
.cookie-card {
    position: fixed; /* Fixed positioning to stick to the viewport */
    bottom: 0; /* Align to the bottom */
    left: 0; /* Align to the left */
    width: 100%; /* Full width */
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1); /* More subtle shadow */
    z-index: 9999; /* High z-index to ensure it's above other elements */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    align-content:center;
    text-align:center;
}


    .cookie-card .title {
        font-weight: 600;
        color: rgb(31 41 55);
        margin:5px;
    }

    .cookie-card .description {
        margin-top: 1rem;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: rgb(75 85 99);
    }

        .cookie-card .description a {
            --tw-text-opacity: 1;
            color: rgb(59 130 246);
        }

            .cookie-card .description a:hover {
                text-decoration-line: underline;
            }

    .cookie-card .actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 1rem;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-card .pref, .cookie-card .accept {
        padding: 0.5rem 1rem; /* Adjust padding to your preference */
        font-size: 0.75rem;
        line-height: 1rem;
        color: #187d89;
        text-decoration-line: underline;
        transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        background-color: transparent;
    }

        .cookie-card .pref:hover {
            color: rgb(156 163 175);
        }

        .cookie-card .pref:focus {
            outline: 2px solid transparent;
            outline-offset: 2px;
        }

    .cookie-card .accept {
        font-size: 0.75rem;
        line-height: 1rem;
        background-color: #187d89;
        font-weight: 500;
        border-radius: 0.5rem;
        color: #fff;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
        border: none;
        transition: all .15s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 15px;
        margin-left: 20px;
    }

        .cookie-card .accept:hover {
            background-color: #13646d;
        }

        .cookie-card .accept:focus {
            outline: 2px solid transparent;
            outline-offset: 2px;
        }
/* Style pour la modale (background) */
    .cookie-card .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgba(0, 0, 0, 0.6); /* Fond semi-transparent */
    }

/* Style pour le contenu de la modale */
    .cookie-card .modal-content {
        position: relative;
        background-color: #fff;
        margin: 10% auto;
        padding: 20px;
        border: 1px solid #187d89;
        width: 50%; /* Adapter selon la largeur souhaitée */
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Ombre pour donner de la profondeur */
        border-radius: 10px; /* Coins arrondis */
    }

/* The Close Button */
        .cookie-card .modal-content .close {
            color: #aaaaaa;
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 30px;
            font-weight: bold;
        }

            .cookie-card .modal-content .close:hover,
            .cookie-card .modal-content .close:focus {
                color: #000;
                text-decoration: none;
                cursor: pointer;
            }
/* Ajoutez ceci à votre CSS existant */

        /* Titres et sous-titres */
        .cookie-card .modal-content h2, .modal-content h3 {
            color: #187d89;
            margin-bottom: 10px;
        }

        .cookie-card .modal-content p, .modal-content ul {
            text-align: left;
            font-size: 14px;
            color: #333;
            line-height: 1.6;
        }

        .cookie-card .modal-content ul {
            list-style: disc inside;
        }
        .cookie-card .modal-content li {
            margin-bottom: 5px;
            text-align: justify; /* Optionnel, pour une meilleure lisibilité */
        }

        .cookie-card .modal-content p {
            text-align: justify; /* Optionnel, pour une meilleure lisibilité */
            line-height: 1.6; /* Espacement plus lisible pour le texte */
        }

        .cookie-card .modal-content .cookie-policy-content {
            padding: 15px;
            background-color: #f0faff; /* Un fond clair qui complète votre couleur principale */
            border: 1px solid #187d89; /* Bordure avec votre couleur personnalisée */
            border-radius: 4px; /* Des coins arrondis pour l'esthétique */
            margin-top: 10px;
        }
        /* Adaptation pour les petits écrans */
        @media screen and (max-width: 768px) {
            .cookie-card .modal-content {
                width: 80%;
                margin: 20% auto;
            }
        }


