body {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background:#eee;

}

.scanner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%; /* Largeur de la barre de scanner */
    height: 100%;
    background: rgba(178, 221, 167, 0.7); /* Couleur du scanner */
    animation: scan 4s linear infinite; /* Durée de l'animation */
}

@keyframes scan {
    0% {
        transform: translateX(0); 
    }
    50% {
        transform: translateX(calc(100% )); 
    }
    100% {
        transform: translateX(0); 
    }
}

 

header {
    position: fixed;
    top: 0;
    width: 100%;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

/* -------------------------------recherche-------------------------------------*/
.searchForm {
    background-color: white;
    border: 1px solid #82a5d7;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

#entete_search {
    color: #82a5d7;
    text-align: center;
}

label[id="type_search"] {
    display: block;
    margin-bottom: 8px;
    color: black;
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #82a5d7;
    border-radius: 4px;
    box-sizing: border-box;
}

#search_submit {
    background-color: #82a5d7;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

#search_submit:hover {
    background-color: #6f94c3;
}








/* ---------------page de creation de compte --------------------------------------------------*/
    @media screen and (min-width:1024px) {
    .container_create_account {
            max-width: 500px;
            margin: 50px auto;
            padding: 20px;
           box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            border-radius: 5px;
            background-color: #f9f9f9;
            width: 80%;
        }
    }
    @media screen and (max-width:900px) {
        .container_create_account {
            margin-top: 50px ;
            width: calc(100%-5%);
            margin-left: 2.5%;
            margin-right: 2.5%;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            border-radius: 5px;
            background-color: #f9f9f9;
            
        }
    }

    #title_create {
        text-align: center;
        color: #82a5d7;
        font-size: 25px;
    }

    #forms {
        display: flex;
        flex-direction: column;
    }

  .i_s,#userType,.villes,#regions {
        margin-bottom: 15px;
        padding: 10px;
        border: 1px solid #82a5d7;
        border-radius: 5px;
    }

    label {
        margin-bottom: 5px;
        color: #0077cc;
    }

    .type_user {
        color: #0077cc;
    }

    button[class="i_s"] {
        padding: 10px;
        background-color: #82a5d7;
        color: #ffffff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    button[class="i_s"]:hover {
        background-color: #0077cc;
    }


/* ---------------page de connexion --------------------------------------------------*/
     .container_connect {
            background: white;
            padding: 10%;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            width: 80%;
            max-width: 400px;
            border:2px solid #82a5d7;
        }
        #title_connect {
            color:  #82a5d7;
            text-align: center;
            font-size: 25px;
        }
        #connect_tel, #connect_pass {
            width: 100%;
            padding: 12px;
            margin: 10px -10px;
            border: 2px solid #82a5d7;
            border-radius: 5px;
            font-size: 16px;
        }
       
        #connect_button {
            width: 100%;
            padding: 12px;
            background-color: #82a5d7;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 10px;
        }
        #connect_button:hover {
            background-color: #0077cc;
        }

/* -------------------publication annonce------------------------------ */
.form_create_announ {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 20px auto;
        max-width: 600px;
        color: #82a5d7;
        border:1px solid #82a5d7;
    }

    #id_name_announ {
        margin-bottom: 15px;
        text-align: center;
    }

    #upload,#categories_announ,#logements_announ,#ville_announ,#localite_announ,#prix_announ,#description_announ,#backgroundColor,#textColor,#textSize,#import_image
     {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        cursor:pointer;
    }

    /* importation image inscription */

    #import_image_inscr{
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px dashed #82a5d7;
        border-radius: 4px;
        box-sizing: border-box;
        color: #0077cc;
        text-align: center;
        cursor: pointer;
    }
    #image-preview_inscr {
        position: relative;
        margin-top: 10px;
        display: block;
    }
  .image-container_inscr {
        position: relative;
        /* Pour le positionnement absolu du bouton */
        display: inline-block;
        /* Pour que l'image prenne seulement l'espace nécessaire */
        margin-right: 10px;
        /* Espacement entre les images */
        margin-bottom: 10px;
        /* Espacement en bas */
    }

    .image-container_inscr img {
        width: 100px;
        height: auto;
        border: 1px solid #ccc;
        display: block;
        margin-bottom: 5px;
    }

    .close-btn_inscr {
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
        color: red;
        font-size: 20px;
        background: white;
        /* Ajout d'un fond blanc pour une meilleure visibilité */
        border-radius: 50%;
        /* Pour créer une forme circulaire */
        padding: 2px;
        /* Pour l'espace autour de la croix */
        z-index: 1;
        /* Pour s'assurer que la croix est au-dessus de l'image */
    }

#import_image{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px dashed #82a5d7;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;
}



 #image-preview {
        position: relative;
        margin-top: 10px;
        display: block;
    }
  .image-container {
        position: relative;
        /* Pour le positionnement absolu du bouton */
        display: inline-block;
        /* Pour que l'image prenne seulement l'espace nécessaire */
        margin-right: 10px;
        /* Espacement entre les images */
        margin-bottom: 10px;
        /* Espacement en bas */
    }

    .image-container img {
        width: 100px;
        height: auto;
        border: 1px solid #ccc;
        display: block;
        margin-bottom: 5px;
    }

    .close-btn {
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
        color: red;
        font-size: 20px;
        background: white;
        /* Ajout d'un fond blanc pour une meilleure visibilité */
        border-radius: 50%;
        /* Pour créer une forme circulaire */
        padding: 2px;
        /* Pour l'espace autour de la croix */
        z-index: 1;
        /* Pour s'assurer que la croix est au-dessus de l'image */
    }

    #button_create_anoun {
        background-color: #82a5d7;
        color: white;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        font-size: 16px;
        margin-top: 8px;
        display: block;
    }

    #button_create_anoun:hover {
        background-color: #0e245e;
    }

    /* ----------------------profil ------------------------------------------- */

    .form_profil {
        /* position: absolute; */
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        padding: 20px;
        width: calc(100%-10%); 
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .nbr_vue{
        text-align: center;
        margin-bottom: 15px;
    }

    @media screen and (min-width:1024px) {
           .form_profil {
        /* position: absolute; */
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        padding: 20px;
        width: calc(100%-40%); 
        margin-left: 20%;
        margin-right: 20%;
        margin-top: 20px;
        margin-bottom: 20px;
    } 
    }

    .contain_photo {
        text-align: center;
        margin-bottom: 20px;
    }

    #profileImage {
        border-radius: 50%;
        width: 120px; /* Taille de l'image responsive */
        height: 120px;
        object-fit: cover;
        border: 2px solid #007bff; /* Bordure bleu */
    }

   

    .info_nomProfil label,
    .info_prenomProfil label,
    .info_naissProfil label,
    .info_villeProfil label,
    .info_wwwProfil label,
    .info_emailProfil label,
    .info_telephoneProfil label,
    .info_type-userProfil label,
    .info_mot_de_passeProfil label {
        font-weight: bold;
        display: block;
        margin-bottom: 3px;
        font-size: 14px;
    }

    #info_nomProfil ,
    #info_prenomProfil ,
    #info_naissProfil,
    #info_villeProfil ,
    #info_emailProfil ,
    #info_telephoneProfil ,
    #info_type-userProfil ,
    #info_mot_de_passeProfil {
        width: calc(100% - 20px);
        padding: 10px;
        border: 1px solid #ced4da; /* Bordure grise */
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    #info_emailProfil{
        width: calc(100% - 40px);
    }

    .info_updateProfil {
        background-color: #007bff; /* Couleur du bouton */
        color: white;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
        width: 100%; /* Rendre le bouton responsive */
        
        margin-top: 15px;
    }

    .info_updateProfil:hover {
        background-color: #0056b3; /* Couleur hover du bouton */
    }

#sms{
     position: relative;
        right: 20px;
        /* text-align: right; */
        background: rgb(59, 112, 83);
        color: white;
        padding: 4px;
        margin: 4px;
        display: block;
        
}

/*---------------------------------info user message ------------------------------- */

    

        .message_non_lu{
            
            border-radius: 50%;
             width: 15px;
            height: 15px;
            color:WHITE;
            font-weight: bold;
            background-color:rgb(199, 46, 18);
            text-align: center;
            padding:2.5px;
            font-size: 10px;
            display: inline-block;
            
        }
        .message_non_lus{
            
            border-radius: 50%;
             width: 15px;
            height: 15px;
            color:WHITE;
            font-weight: bold;
            background-color:rgb(54, 42, 40);
            text-align: center;
            padding:2.5px;
            font-size: 10px;
            background-color:rgb(199, 46, 18);
            position: absolute;
            top:0;
            right: 0;

            
        }
        
        /* ----------------------------------------- spinner */

        #span_supp{
            position: relative;
            font-weight: bold;
            text-align: center;
            display: inline-block;
            color: #31B7F5;
        }
        #span_supp::after {
            content: '';
            position: absolute;
            left: 100%;
            animation: dots 1.5s infinite;
        }
        @keyframes dots {
            0%, 20% { content: ' '; }
            20%, 40% { content: '.'; }
            40%, 60% { content: '..'; }
            60%, 80% { content: '...'; }
            80%, 100% { content: ''; }
        }

         #span_bloq{

            position: relative;
            font-weight: bold;
            text-align: center;
            color: #31B7F5;
        }
        #span_bloq::after {
            content: '';
            position: absolute;
            left: 100%;
            animation: dots 1.5s infinite;
        }
        @keyframes dots {
            0%, 20% { content: ' '; }
            20%, 40% { content: '.'; }
            40%, 60% { content: '..'; }
            60%, 80% { content: '...'; }
            80%, 100% { content: ''; }
        }


        @media screen and (min-width:1024px) {
            .solde_insuffisant_mesPub{
                position: fixed;
                top:20%;
                width: calc(100%-60%);
                left: 30%;
                right: 30%;
                background: #f8d7da;
                color: #721c24;
                border: 1px solid #f5c6cb;
                display: none;
                padding: 10px;
                border-radius: 5px;
                text-align: center;
                z-index: 1000;
                font-size: 14px;
                font-weight:600;
            }

            .solde_insuffisant_annonce{
                position: fixed;
                top:20%;
                width: calc(100%-60%);
                left: 30%;
                right: 30%;
                background: #f8d7da;
                color: #721c24;
                border: 1px solid #f5c6cb;
                display: none;
                padding: 10px;
                border-radius: 5px;
                text-align: center;
                z-index: 1000;
                font-size: 14px;
                font-weight:600;
            }

            .solde_insuffisant_certif{
                position: fixed;
                top:20%;
                width: calc(100%-60%);
                left: 30%;
                right: 30%;
                background: #f8d7da;
                color: #721c24;
                border: 1px solid #f5c6cb;
                display: none;
                padding: 10px;
                border-radius: 5px;
                text-align: center;
                z-index: 1001;
                font-size: 14px;
                font-weight:600;
            }
        }

        @media screen and (max-width:900px) {
            .solde_insuffisant_mesPub{
                position: fixed;
                top:20%;
                width: calc(100%-40%);
                left: 20%;
                right: 20%;
                background: #f8d7da;
                color: #721c24;
                border: 1px solid #f5c6cb;
                display: none;
                padding: 10px;
                border-radius: 5px;
                text-align: center;
                z-index: 1000;
                font-size: 14px;
                font-weight: 600;
            }
            .solde_insuffisant_annonce{
                position: fixed;
                top:20%;
                width: calc(100%-40%);
                left: 20%;
                right: 20%;
                background: #f8d7da;
                color: #721c24;
                border: 1px solid #f5c6cb;
                display: none;
                padding: 10px;
                border-radius: 5px;
                text-align: center;
                z-index: 1000;
                font-size: 14px;
                font-weight: 600;
            }

            .solde_insuffisant_certif{
                position: fixed;
                top:20%;
                width: calc(100%-40%);
                left: 20%;
                right: 20%;
                background: #f8d7da;
                color: #721c24;
                border: 1px solid #f5c6cb;
                display: none;
                padding: 10px;
                border-radius: 5px;
                text-align: justify;
                z-index: 1001;
                font-size: 14px;
                font-weight: 600;
            }
        }


        /* annonce message de confirmation de creation */
            /* #supp {
                position: fixed;
                top: 50%; 
                left: 50%; 
                transform: translate(-50%, -50%); 
                background-color: white; 
                border: 1px solid #5a5656; 
                padding: 20px;
                box-shadow: 0 4px 8px rgba(0, 0, 0); 
                z-index: 1000; 
                text-align: center; 
                border-radius: 15px;
                display: none;

            } */

        #confirmAnnonce {
            background-color: #fff;
            border:none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 20px;
            position: fixed;
            top: 50%; 
            left: 50%; 
            transform: translate(-50%, -50%); 
            z-index: 1000;
            display: none;
            border-radius: 15px;
            flex-direction: column;
            align-items: center;
            font-weight: bold;
            text-align: center;
            color: #31B7F5;
            
        }


        #smsConfirm {
            margin-top: 20px;
            font-size: 16px;
            color: #31B7F5;
            text-align: center; 
            font-weight: bold;
        }

        #confirmProfil {
            background-color: #fff;
            border: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 20px;
            position: fixed;
            top: 50%; 
            left: 50%; 
            transform: translate(-50%, -50%); 
            z-index: 1000;
            display: none;
            border-radius: 15px;
            flex-direction: column;
            align-items: center;
            font-weight: bold;
            text-align: center;
            color: #31B7F5;
            
        }


        #smsConfirmProfil {
            margin-top: 20px;
            font-size: 16px;
            color: #31B7F5;
            text-align: center; 
            font-weight: bold;
        }
          
        #confirmConnect {
            position: fixed;
            top: 50%; 
            left: 50%; 
            transform: translate(-50%, -50%); 
            background-color: white; 
            border: none;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            z-index: 1000; 
            text-align: center; 
            border-radius: 10px;
            display: none;
            text-align: center;
            
        }


        #smsConnect {
            font-weight: bold;
            position: relative;
             margin-top: 20px;
            font-size: 16px;
            color: #31B7F5;
            text-align: center; 
        }

        #smsConnect::after {
            content: '';
            position: absolute;
            left: 100%;
            animation: dots 1.5s infinite;
        }
        @keyframes dots {
            0%, 20% { content: ' '; }
            20%, 40% { content: '.'; }
            40%, 60% { content: '..'; }
            60%, 80% { content: '...'; }
            80%, 100% { content: ''; }
        }
  
        #confirmInscr {
        position: fixed;
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%); 
        background-color: white; 
        border:none; 
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); 
        z-index: 1000; 
        text-align: center; 
        border-radius: 10px;
        display: none;
        text-align: center;
            
        }


        #smsInscr {
            font-weight: bold;
            position: relative;
             margin-top: 20px;
            font-size: 16px;
            color: #31B7F5;
            text-align: center; 
        }

        #smsInscr::after {
            content: '';
            position: absolute;
            left: 100%;
            animation: dots 1.5s infinite;
        }
        @keyframes dots {
            0%, 20% { content: ' '; }
            20%, 40% { content: '.'; }
            40%, 60% { content: '..'; }
            60%, 80% { content: '...'; }
            80%, 100% { content: ''; }
        }




    #certification {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    
}

#info-certi {
    margin-top: 20px;
}

#desc-certif {
    line-height: 1.6;
    color: #555;
    text-align: justify;
}


h4 {
    color: #333;
    margin-top: 20px;
    text-align: center;
}

/* Styles pour les labels et les divs d'importation */
#label-recto,#label-verso,#label-me {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.certification {
    border: 1px dashed #007bff;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    cursor: pointer;
    color: #007bff;
    transition: background-color 0.3s;
}

.certification:hover {
    background-color: #e9f5ff;
}

#button_certif {
    background-color: #82a5d7;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    margin-top: 8px;
    display: block;
}

#button_certif:hover {
    background-color: #0e245e;
}
/* Styles pour les fichiers d'importation cachés */

#image-preview-recto {
    position: relative;
    margin-top: 10px;
    display: block;
}

#image-preview-verso {
    position: relative;
    margin-top: 10px;
    display: block;
}



/* Responsive Design */
@media (max-width: 600px) {
    #certification {
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    #desc-certif {
        font-size: 0.9em;
    }

    h4 {
        font-size: 1.2em;
    }

    .certification {
        padding: 15px;
        font-size: 0.9em;
    }

    
}
#confirmCertif {
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    background-color: white; 
    border: none; 
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; 
    text-align: center; 
    border-radius: 10px;
    display: none;
    text-align: center;
    color: #31B7F5;
        
    }


    #smsCertif {
        font-weight: bold;
        position: relative;
         margin-top: 20px;
        font-size: 16px;
        color: #31B7F5;
        text-align: center; 
    }

    #smsCertif::after {
        content: '';
        position: absolute;
        left: 100%;
        animation: dots 1.5s infinite;
    }
    
    @keyframes dots {
        0%, 20% { content: ' '; }
        20%, 40% { content: '.'; }
        40%, 60% { content: '..'; }
        60%, 80% { content: '...'; }
        80%, 100% { content: ''; }
    }

   





#bouton_account5 {
    border: none;
    box-shadow: 0px 2px 5px #9e9d9d;
    padding: 5px;
    font-weight: bolder;
    background-color:#31B7F5;
    font-size: 12px;
    color: white;
    position:fixed;
    z-index: 1000;
    cursor: pointer;
    width: 50px;  
    height: 50px; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    right: 1%;
    top: 40%;
}


    .form_crediter{

        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        padding: 20px;
        width: calc(100%-10%); 
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 20px;
        margin-bottom: 20px;

    }

    .form_crediter h2{
        text-align: center;
        color:#0056b3;
    }

    #money{
        width: 40px;
        height: auto;
    }


    @media screen and (min-width:1024px) {
        .form_crediter {
            /* position: absolute; */
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            padding: 20px;
            width: calc(100%-40%); 
            margin-left: 20%;
            margin-right: 20%;
            margin-top: 20px;
            margin-bottom: 20px;
        }
    }


    #btnRecharge {
    background-color: #6898db;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 50%;
    margin-left:25%;
    font-size: 16px;
    margin-top: 8px;
    display: block;
}

#btnRecharge:hover {
    background-color: #24439b;
}

.message_success,.message_error {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
}

.message_success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: none;
}

.message_error  {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: none;
}





#confirmCertifUser {
    position: fixed;
    width: 70%;
    top: 30%; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff; /* Couleur de fond */
    border: 1px solid #ccc; /* Bordure */
    padding: 20px; /* Marge intérieure */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Au-dessus d'autres éléments */
    text-align: center; /* Centrage du texte */
    border-radius: 10px; /* Coins arrondis */
    color: #31B7F5;
}

@media screen and (min-width:1024px) {
    #confirmCertifUser {
        position: fixed;
        width: 50%;
        top: 50%; 
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff; /* Couleur de fond */
        border: 1px solid #ccc; /* Bordure */
        padding: 20px; /* Marge intérieure */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Ombre */
        z-index: 1000; /* Au-dessus d'autres éléments */
        text-align: center; /* Centrage du texte */
        border-radius: 10px; /* Coins arrondis */
    }
}
#messageCertifUser {
    display: block; /* Une nouvelle ligne pour chaque élément */
    margin-bottom: 15px; /* Espacement sous le message */
    font-size: 16px; /* Taille de police */
    color: #31B7F5; /* Couleur du texte */
    line-height: 1.5; /* Espacement entre les lignes */
    font-weight: bolder;
}



#confirmerC {
    background-color: #007BFF; 
    margin: 0 10px; /* Espacement entre les boutons */
    padding: 10px 15px; /* Marge intérieure */
    font-size: 16px; /* Taille de police des boutons */
    color: #fff; /* Couleur du texte */
    border: none; /* Pas de bordure */
    border-radius: 10px; /* Coins arrondis */
    cursor: pointer; /* Curseur en main au survol */
    transition: background-color 0.3s; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#rejeterC {
    background-color: #FF4136;
      margin: 0 10px; /* Espacement entre les boutons */
    padding: 10px 15px; /* Marge intérieure */
    font-size: 16px; /* Taille de police des boutons */
    color: #fff; /* Couleur du texte */
    border: none; /* Pas de bordure */
    border-radius:10px; /* Coins arrondis */
    cursor: pointer; /* Curseur en main au survol */
    transition: background-color 0.3s; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#confirmerC:hover {
    background-color: #0056b3; /* Couleur de fond au survol du bouton de confirmation */
}

#rejeterC:hover {
    background-color: #c0392b; /* Couleur de fond au survol du bouton de rejet */
}

button:focus {
    outline: none; /* Pas de contour lors du focus */
}
.default_image{
        opacity: 0.7;
    }








.a_propos {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width:900px) {
    .a_propos {
        max-width: 98%;
        margin: 0 auto;
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}

.titre1, .titre2 {
    font-size: 22px;
    font-weight: bold;
    margin: 40px 0 ;
    color: #333;
    text-align: center;
    /* margin-left:18% ; */
}

p, h4, ul ,h3{
    margin: 10px 0;
    line-height: 1.6;
    text-align: justify;
}

h3,h4 {
    font-size: 17px;
    margin: 15px 0 5px;
    color: #555;
}
h3{
    font-size: 22px;
    margin: 20px 0;
    text-align:center ;

}

ul {
    padding-left: 30px;
    font-weight: lighter;
}

.entete_img {
   
    margin: 20px 0;
    text-align:center ;
}


.entete_img img {
    width: 110px;
    height: 110px;
    margin-right: 10px;
    border: 1px solid #82a5d7;
    border-radius: 50%;
}

.member_grp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    font-size: 17px;
    font-weight: bolder;
}

.member1, .member2, .member3, .member4 {
    display: block;
    text-align: center;
    margin: 10px 0;
}

#img_member {
    width: 110px;
    height: 110px;
    margin-right: 10px;
    border-radius: 50%;
    border: 1px solid #82a5d7;
}

.pb, .sol,p,ul,li{
        font-size: 14px;
    }

@media (max-width: 900px) {
    .member1, .member2, .member3, .member4 {
        width: 100%; /* Occupation de la pleine largeur sur mobile */
    }
    .pb, .sol,p,ul,li{
        font-size: 13px;
    }

    .entete_img img {
    width: 90px;
    height: 90px;
    margin-right: 10px;
    border: 1px solid #82a5d7;
      border-radius: 50%;

}
#img_member {
    width: 90px;
    height: 90px;
    margin-right: 10px;
    border-radius: 50%;
    border: 1px solid #82a5d7;
}
}