/* General styles ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #343a40;
    color: #f8f9fa;
}

a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
}

/* Navbar styles ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.navbar {
    background-color: #ff6347;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

#navbar-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Navbar content styles ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
#navbar_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#navbar_content form {
    margin-left: 15px;
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    margin: 0;
}

.navbar-nav a {
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.navbar-nav a:hover {
    background-color: #e55335;
}

.toggle-button {
    display: none;
}

/* trier ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/



#trier {
    background-color: #343a40;
    padding: 10px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

#trier label,
#trier input,
#trier select {
    width: 100%;
    margin-bottom: 10px;
}

#trier_submit {
    width: 500px;
    margin: 10px 60px;
    background-color: #343a40;
    color: white;
    border: solid 3px #e55335;
    font-size: 20px;
}

/* contenu generaux ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.main_content {
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 100px);
}

.main_content_one {
    width: 70%;
    display: flex;
    flex-wrap: wrap;

}

.main_content_two {
    width: 30%;
    margin: 0;
    border-radius: 0;
    padding: 0px;
    background-color: #343a40;
}

.main_content_two ul {
    list-style: none;
}

.main_content_two ul li {
    margin: 5px 0;
    font-size: 1em;
    color: white;
    border: solid 2px white;
    border-radius: 10px;
    padding: 8px;
    background-color: #343a40;
    border-radius: 3px;
}

.main_content_two a {
    color: white;
}

.search_freind {
    margin: 10px;
}


.search_freind input[type="submit"] {
    margin: 5px;
    background-color: #343a40;
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.search_freind input[type="submit"]:hover {
    background-color: #495057;
}

.list_amis {
    height: 85%;
    overflow-y: auto;
    padding: 10px;
}

.list_amis ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list_amis li {
    margin: 5px 0;
    padding: 8px;
    font-size: 1em;
    color: white;
    background-color: #495057;
    border: 2px solid white;
    border-radius: 10px;
}

.list_amis li img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    vertical-align: middle;
}

.list_amis li h5 {
    display: inline;
    font-size: 1.1em;
}

.list_amis a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.list_amis a:hover {
    background-color: #6c757d;
}

/* page profile ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/

.profile {
    margin: 10px;
    display: flex;
    flex-direction: row;
}

.profile_photo {
    background: #343a40;
    border: solid 2px #343a40;
    width: calc(100%-200px);
    padding: 20px;
}

.profile_photo img {
    width: 180px;
    border-radius: 50%;
    height: 180px;
    object-fit: cover;
}

.profile_detail {
    width: 70%;
    padding: 10px 40px;
}

/* list de recette ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.list_Recette {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list_Recette li {
    margin-bottom: 15px;
}

.list_Recette a {
    display: block;
    padding: 10px;
    text-decoration: none;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.list_Recette a:hover {
    background-color: #f0f0f0;
    color: #000;
}
/* edit recette ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/


#edit_recette {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#edit_recette h2 {
    text-align: center;
    color: #333;
}

#edit_recette  label {
    background-color:  #555;;
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

#edit_recette input[type="text"],
#edit_recette input[type="time"],
#edit_recette input[type="number"],
#edit_recette select,
#edit_recette textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#edit_recette input[type="text"]:focus,
#edit_recette input[type="number"]:focus,
#edit_recette input[type="time"]:focus,
#edit_recette select:focus,
#edit_recette textarea:focus {
    border-color: #007BFF;
    outline: none;
}

#edit_recette #ingredient h1,
#edit_recette #etape h1 {
    margin-top: 20px;
    color: #555;
}

#edit_recette ul {
    list-style-type: none;
    padding: 0;
}

#edit_recette li {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 4px;
}

#edit_recette button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

#edit_recette button:hover {
    background-color: #218838;
}


/* page infomation personnel ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.information_personnel {
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 100px);
}


.information {
    width: 30%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 20px 0;
}

.list_information button {
    background-color: #4CAF50;
    display: flex;
    flex-direction: column;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.list_information button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.list_information button:focus {
    outline: none;
    box-shadow: 0 0 5px #4CAF50;
}

.list_information button.active {
    background-color: #333;
    color: #fff;
}




#travail,
#etude,
#personnel,
#recette {
    width: 100%;
    display: flex;
    flex-direction: row;

}



#information_detail {
    width: 70%;
    margin: 20px auto;
    padding: 10px;
    font-family: Arial, sans-serif;
    border: solid 2px white;
    border-radius: 8px;
}

#information_detail div {
    margin-bottom: 20px;
}

#information_detail ul {
    width: 40%;
    list-style-type: none;
    padding: 0;
    margin: 0px 10px;
}

#information_detail li {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#information_detail li:hover {
    background-color: #f0f0f0;
}

#information_detail li span {
    display: block;
    font-size: 14px;
    color: #333;
}

#information_detail button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

#information_detail button:hover {
    background-color: #45a049;
}

#information_detail form {
    width: 60%;
    margin: 0px 10px;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

#information_detail label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

#information_detail input[type="text"],
#information_detail input[type="date"],
#information_detail textarea {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    box-sizing: border-box;
}

#information_detail textarea {
    resize: vertical;
    height: 100px;
}

#information_detail input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

#information_detail input[type="submit"]:hover {
    background-color: #45a049;
}




/* recette ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/

#recette_detail {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #333;
    text-align: center;
    color: white;
    height: 80vh;
    overflow-y: auto;
    max-width: 100%;
}

/* Recipe section ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
#recette_actuelle h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #e55335;
}

#recette_actuelle p {
    margin: 5px 0;
    color: white;
}

#recette_actuelle h2 {
    margin-top: 20px;
    font-size: 1.5em;
    color: white;
}

/* Ingredient list styles ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
#ingredient ul {
    list-style-type: none;
    padding-left: 0;
}

#ingredient h2,
#etape h2 {
    color: #e55335;
}

#ingredient li {
    margin: 5px 0;
    font-size: 1em;
    color: white;
    padding: 8px;
    background-color: #555;
    border-radius: 3px;
}

#etape ul {
    list-style-type: decimal;
    padding-left: 20px;
    text-align: left;
}

#etape li {
    margin: 10px 0;
    font-size: 1em;
    color: white;
    padding: 8px;
    background-color: #444;
    border-radius: 3px;
}

#recette_actuelle,
#ingredient,
#etape {
    margin-bottom: 20px;
}

#ingredient,
#etape {
    padding-top: 10px;
}


/* ajout de recette ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.main_form_recette {
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 100px);
}

#recette_cree {
    text-align: center;
    width: 30%;
    margin: 15px;
}

#recette_cree_form {
    width: 70%;
}

#ajout_recette {
    width: 70%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #e55335;
}

#ajout_recette label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #343a40;
}

#ajout_recette input[type="text"],
#ajout_recette input[type="time"],
#ajout_recette select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}


#ajout_recette input[type="text"]:hover,
#ajout_recette input[type="time"]:hover,
#ajout_recette select:hover {
    border-color: #888;
}

#ajout_recette input[type="text"]:focus,
#ajout_recette input[type="time"]:focus,
#ajout_recette select:focus {
    border-color: #555;
    outline: none;
}

#ajout_recette input[type="submit"] {
    width: 70%;
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#ajout_recette input[type="submit"]:hover {
    background-color: #4cae4c;
}

/*  ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/

#ajout_recette_button {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#boutton_variable {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

#boutton_variable button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#boutton_variable button:hover {
    background-color: black;
}

@keyframes ajout_recette {
    form {
        font-size: 10px;
    }

    to {
        font-size: 15px;
    }
}

#ajout_recette_button_variable {
    display: block;
    width: 70%;
    padding: 10px;
    background-color: black;
    color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    animation-name: ajout_recette;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

#ajout_recette_button_fixe {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

#ajout_recette_button_fixe button {
    background-color: #e55335;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#ajout_recette_button_fixe button:hover {
    background-color: #e55335;
}


#ajout_4_part {
    display: flex;
    justify-content: space-between;
}






/* connexion style ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/

/* part de creation de nouveau compte ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.nouv_compte {
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: #e55335;
}

.nouv_compte form {
    display: flex;
    flex-direction: column;
}

.nouv_compte label {
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.nouv_compte input[type="text"],
.nouv_compte input[type="password"],
.nouv_compte input[type="date"],
.nouv_compte select {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    transition: border 0.3s ease;
}

.nouv_compte input[type="text"]:focus,
.nouv_compte input[type="password"]:focus,
.nouv_compte input[type="date"]:focus,
.nouv_compte select:focus {
    border-color: #e55335;
    outline: none;
}

.nouv_compte select {
    padding: 10px;
    font-size: 14px;
}

.nouv_compte input[type="submit"] {
    padding: 12px;
    font-size: 16px;
    background-color: #e55335;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nouv_compte input[type="submit"]:hover {
    background-color: #e55335;
}

.nouv_compte .dateniassance {
    margin-bottom: 15px;
}

.nouv_compte select {
    width: 100%;
}

.nouv_compte label+input,
.nouv_compte label+select {
    margin-top: 10px;
}

.nouv_compte select {
    margin-bottom: 15px;
}

.nouv_compte select:last-of-type {
    margin-bottom: 20px;
}






/* part de connextion ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
#nouv_compte {
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

#connexion {
    display: flex;
    flex-direction: column;
}

#connexion label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

#connexion input[type="text"],
#connexion input[type="password"] {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    transition: border 0.3s ease;
}

#connexion input[type="text"]:focus,
#connexion input[type="password"]:focus {
    border-color: #e55335;
    outline: none;
}

#connexion input[type="submit"] {
    padding: 10px;
    font-size: 16px;
    background-color: #e55335;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#connexion input[type="submit"]:hover {
    background-color: #218838;
}


#nouv_compte a {
    display: block;
    text-align: center;
    margin-top: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

#nouv_compte a:hover {
    color: #0056b3;
}





/* Main content styles ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
section {
    padding: 20px;
    margin: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


section div {
    margin-bottom: 10px;

}

/* page de discussion ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/

#chat_main_content {
    display: flex;
    flex-direction: row;
}

#chat_content_one {
    width: 80%;
    background-color: #343a40;
}

#chat_content_two {
    width: 20%;
}

#chat_text {
    height: 85%;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #343a40;
}



.envoie {
    position: relative;
    max-width: 40%;
    background: white;
    color: black;
    float: left;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    clear: both;
}

.recu {
    position: relative;
    max-width: 40%;
    background: #e55335;
    color: white;
    float: right;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    clear: both;
}

#chat_input {
    padding: 10px;
    border-top: 1px solid #ccc;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
}

/* Form styling ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
#chat_input form {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

#chat_input textarea {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

#chat_input input[type="submit"] {
    padding: 10px 20px;
    background-color: #e55335;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

#chat_input input[type="submit"]:hover {
    background-color: #e55335;
}


.carte {
    margin: 20px;
    padding: 10px;
    border: 1px solid #343a40;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    width: 400px;
    height: 500px;
    position: relative;
}

/* Close button styles ========================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* Profile section ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.profile_icon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile_icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.profile_icon a {
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.profile_icon a:hover {
    text-decoration: underline;
}

/* Post picture ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.post_picture {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    /* Keeps the image aspect ratio ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
    margin-bottom: 10px;
}

/* Card details and buttons ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.carte_detail {
    font-size: 10px;
    color: black;
}

.carte_detail button {
    padding: 5px;
    border-radius: 10px;
    color: black;
    border: 1px solid #343a40;
    background: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carte_detail button img {
    width: 20px;
}

.carte_detail button:hover {
    background-color: #f0f0f0;
    /* Slight hover effect for buttons ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
}

/* Comment section ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
.comment_text {
    display: flex;
    flex-direction: column;
    height: 200px;
    /* Fixed height for the entire comment section ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
    border-top: 1px solid #ccc;
    padding: 10px;
    font-size: 12px;
    color: #333;
    position: relative;
}

.comment_list {
    flex: 1;
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.comment_list ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.comment_list li {
    margin-bottom: 5px;
    background-color: #f8f8f8;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.comment_text form {
    display: flex;
    gap: 10px;
}

.comment_text input[type="text"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
}

.comment_text input[type="submit"] {
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment_text input[type="submit"]:hover {
    background-color: #0056b3;
}


.comment_text {
    height: 205px;
    background-color: #007bff;
    display: none;
}

.comment_text form {
    position: relative;
    bottom: 2px;
}

.unlike-icon {
    cursor: pointer;
    background-color: white;
}


.like-icon img {
    margin: 0px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #e55335;
}

.profile_icon {
    display: flex;
    flex-direction: row;
    color: white;
    background-color: #343a40;
}

.profile_icon a {
    text-decoration: none;
    color: white;
    margin-top: 10px;
}

.profile_icon img {
    margin: 5px 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile_icon p {
    margin-left: 20px;
    width: 60%;
    text-transform: uppercase;
    color: #e55335;
}

.post_picture {
    padding: 0px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: solid 2px #ff6347;
    border-radius: 8px;
}


.carte.expanded {
    position: fixed;
    padding: 0, 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    height: 700px;
    z-index: 1000;
    width: 80%;
    max-width: 600px;
    background-color: white;
}

.overlay {
    background-color: black;
    z-index: -10;
}



.close-button {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: coral;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
}


#rideau {
    position: fixed;
    display: none;
    width: 100vw;
    height: 100vh;
    z-index: 600;
    background-color: rgba(0, 0, 0, 0.5);
}

/* amis follower, wuivi styles ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/

.main_content_col {
    min-height: calc(100vh - 100px);
}

#suivie,
#follower {
    margin-bottom: 20px;
}

#suivie h2,
#follower h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

#suivie ul,
#follower ul {
    list-style-type: none;
}

#suivie ul li,
#follower ul li {
    margin-bottom: 15px;
}

.profile_icon {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.profile_icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Footer styling ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
footer {
    background-color: #ff6347;
    color: white;
    padding: 20px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
    margin-top: auto;
}

footer div {
    margin-bottom: 15px;
}

footer h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

footer a {
    color: black;
    text-decoration: none;
    font-size: 1em;
}

footer a:hover {
    text-decoration: underline;
}


footer p {
    font-size: 1em;
    line-height: 1.6;
}

footer div a {
    display: inline-block;
    margin-top: 10px;
}







/* Responsive styles ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-brand {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    #navbar_content {
        display: none;
    }

    #navbar_content form {
        margin-left: 50px;
    }

    #navbar-toggle {
        display: block;
    }

    .navbar-nav li {
        width: 100%;
        border-radius: 10px;
        border: solid 1px white;
    }


    .navbar-nav a {
        padding: 10px;
        text-align: center;
        width: 100%;
    }

    section {
        margin: 10px;
        padding: 15px;
    }

    #mainContentTwo {
        display: none;
        transition: max-height 0.5s ease;
    }

    .toggle-button {
        display: none;
        margin: 10px 0;
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .toggle-button:hover {
        background-color: #0056b3;
    }

    footer {
        flex-direction: column;
        text-align: left;
    }

    footer div {
        width: 100%;
        margin-bottom: 20px;
    }
}



/* Extra Small Devices (Phones, 320px and up) ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }

    .toggle-button {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .main_content {
        flex-direction: column;
    }

    .main_content_two {
        width: 100%;
    }

    .main_content_one {
        width: 100%;
    }

    .profile {
        flex-direction: column;
        align-items: center;
    }

    .profile_photo img {
        width: 150px;
        height: 150px;
    }

    .nouv_compte,
    #nouv_compte {
        width: 90%;
    }

    .carte {
        width: 100%;
    }

    #trier {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    #trier label,
    #trier input,
    #trier select {
        width: 100%;
        margin-bottom: 15px;
    }

    #trier {
        width: 100%;
    }

    #chat_input textarea {
        font-size: 12px;
        padding: 8px;
    }

    #chat_input input[type="submit"] {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Small Devices (Tablets, 576px and up) ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .navbar-nav {
        flex-direction: column;
    }



    .main_content {
        flex-direction: column;
    }

    .main_content_two {
        width: 100%;
    }

    .profile {
        flex-direction: column;
        align-items: center;
    }

    .profile_photo img {
        width: 150px;
        height: 150px;
    }

    .nouv_compte,
    #nouv_compte {
        width: 80%;
    }

    .carte {
        width: 80%;
    }

    #trier {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Medium Devices (Tablets, 768px and up) ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: row;
    }




    .main_content {
        flex-direction: column;
    }

    .main_content_two {
        width: 100%;
    }

    .profile {
        flex-direction: column;
        align-items: center;
    }

    .profile_photo img {
        width: 180px;
        height: 180px;
    }

    .nouv_compte,
    #nouv_compte {
        width: 70%;
    }

    .carte {
        width: 70%;
    }
}

/* Large Devices (Desktops, 992px and up) ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-nav {
        flex-direction: row;
    }





    .main_content {
        flex-direction: row;
    }

    .main_content_two {
        width: 30%;
    }

    .profile {
        flex-direction: row;
        align-items: flex-start;
    }

    .profile_photo img {
        width: 200px;
        height: 200px;
    }

    .nouv_compte,
    #nouv_compte {
        width: 60%;
    }

    .carte {
        width: 400px;
    }
}

/* Extra Large Devices (Large desktops, 1200px and up) ==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================*/
@media (min-width: 1200px) {

    .navbar-nav {
        flex-direction: row;
    }

    .main_content {
        flex-direction: row;
    }

    .main_content_two {
        width: 30%;
    }

    .profile {
        flex-direction: row;
        align-items: flex-start;
    }

    .profile_photo img {
        width: 200px;
        height: 200px;
    }

    .nouv_compte,
    #nouv_compte {
        width: 50%;
    }

    .carte {
        width: 400px;
    }
}