
/* dashboard */

.navbar {
    display: flex;
    justify-content: space-evenly;
    height: 40px;
    /* border: 1px solid gray; */
    align-items: center;
    font-size: 20px;

    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;

    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar_profile{
    background-color: rgb(188, 202, 215);
    height: 25px;
    width: 70px;
    text-align: center;
    color: white;
    border-radius: 6%;
}

.navbar_profile a{
    color: black;
    text-decoration: none;
}

.navbar_home{
    background-color: rgb(50, 208, 50);
    height: 25px;
    width: 70px;
    text-align: center;
    border-radius: 6%;
}

.navbar_home a{
    color: black;
    text-decoration: none;
}

.navbar_search_button{
    background-color: rgb(188, 202, 215);
    height: 25px;
    width: 70px;
    text-align: center;
    color: black;
    border-radius: 6%;
    border: none;
}

.navbar_notifications{
    background-color: rgb(188, 202, 215);
    height: 25px;
    width: 120px;
    text-align: center;
    border-radius: 6%;
}

.navbar_notifications a{
    color: black;
    text-decoration: none;
}

.navbar_panel{
    display: flex;
    justify-content: center;
    width: 900px;
    height: 30px;
    margin-top: 5px;
    text-align: center;
    font-size: 15px;
    /* border: 2px solid black; */
    align-items: center;
    /* margin-left: 200px; */

    position: sticky;
    top: 40px;   /* same as navbar height */
    background-color: white;
    z-index: 999;

    margin-left: auto;
    margin-right: auto;

    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar_panel_input{
    background-color: rgb(188, 202, 215);
    height: 18px;
    width: 70px;
    text-align: center;
    border-radius: 6%;
}

.navbar_panel a{
    color: black;
    text-decoration: none;
}

.add_a_post_like_button{
    /* border: none;
    background-color: rgb(173, 181, 188); */
    color: black;
    border-radius: 6%;
}

.add_a_post_comment_button{
    /* border: none;
    background-color: rgb(173, 181, 188); */
    border-radius: 6%;
}

.add_a_post_comment_button a{
    color: black;
}

.add_a_post_comment_save2_button{
    /* border: none;
    background-color: rgb(173, 181, 188); */
    color: black;
    border-radius: 6%;
}

/* .navbar_panel_input{
    width: 900px;
    height: 30px;
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
} */

/* profile */

.profile_profile {
    width: 600px;
    height: 500px;
    /* border: 2px solid black; */
    margin-left: 70px;
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 1%;
}

.profile_friends_photos {
    width: 200px;
    height: 500px;
    /* border: 2px solid black; */
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 1%;
}

.profile_friends_photos_photos{
    margin-left: 55px;
    height: 30px;
    width: 90px;
    border: 1px solid black;
    font-size: 25px;
    text-align: center;
    margin-top: 23px;
    background-color: rgb(188, 202, 215);
    border-radius: 3%;
}

.profile_friends_photos_photos a {
    text-decoration: none;
    color: black;
}

.profile_friends_photos_friends{
    margin-left: 35px;
    height: 30px;
    width: 130px;
    border: 1px solid black;
    font-size: 25px;
    text-align: center;
    margin-top: 30px;
    background-color: rgb(188, 202, 215);
    border-radius: 3%;
}

.profile_friends_photos_friends a{
    text-decoration: none;
    color: black;
}

.profile {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.profile_profile_photo_div {
    width: 200px;
    height: 200px;
    /* border: 2px solid black; */
    margin-left: 200px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 3%;
}

.profile_profile_photo{
   width: 100%;
   height: 100%;
   object-fit:cover ;
}

.profile_profile_name{
   margin-left: 20px;
   margin-top: 20px;
   margin-bottom: 10px;
}
.profile_profile_about{
    margin-left: 20px;
    margin-bottom: 10px;
}

.profile_profile_edit{
    margin-left: 20px;
    margin-top: 160px;
    height: 20px;
    width: 85px;
    border: 1px solid black;
    background-color: rgb(188, 202, 215);
    text-align: center;
}

.profile_profile_edit a{
    text-decoration: none;
    color: black;
    
}

/* profile_edit */

.profile_edit{
    margin-left: 370px;
    margin-top: 50px;
    height: 500px;
    width: 600px;
    /* border: 1px solid black; */
    margin-right: 500px;
    background: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.profile_edit_profile{
    margin-left: 180px;
    /* margin-top: 20px; */
    padding-top: 10px;
    /* border-bottom: 1px solid black; */
}

.profile_edit_profile_photo_div{
    overflow: hidden;
    width:200px;
    height:200px;
    /* border:2px solid black; */
    /* margin-top: 20px; */
    border-radius: 3%;
    
}

.profile_edit_profile_photo{
    width:  100%;
    height: 100%;
    object-fit: cover;
}

.profile_edit_name_about_button{
    margin-top: 40px;
    margin-left: 50px;
    border-top: 1px solid rgb(203, 201, 201);
    width: 500px;
}

.profile_edit_input_photo_div{
   margin-left: 50px;
   margin-top: 10px;
}

.profile_edit_input_photo{
    /* border: none;
    background-color: rgb(188, 202, 215); */
}

.profile_edit_save_photo_btn_div{
    margin-left: 50px;
    margin-top: 10px;
}

.profile_edit_save_photo_btn{
    width: 83px;
    color: black;
    border: 1px solid black;
    background-color: rgb(188, 202, 215);
}

.profile_edit_name{
    margin-bottom: 20px;
    margin-top: 40px;
    margin-left: 120px;
}

.profile_edit_about{
    margin-left: 120px;
}

.profile_edit_save_button_name_about_div{
    margin-left: 180px;
    margin-top: 10px;
}

.profile_edit_save_button_name_about{
    width: 83px;
    border: 1px solid black;
    background-color: rgb(188, 202, 215);
}

/* dashboard */

.add_a_post{
    width: 600px;
    margin: auto;
    margin-left: 300px;
}

.add_a_post_photo{
    /* width: 800px;
    height: 500px;
    border: 2px solid black;
    margin-left: 250px;
    margin-top: 10px; */
    /* border: 1px solid black; */
    padding: 15px;
    margin-bottom: 25px;
    margin-top: 20px;
   
    width: 700px;
    height: 420px;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    flex-direction: column;
    background-color: white;

    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.add_a_post_photo_photo {
    width: 600px; 
    height: 330px;
    margin-top: 0px;
}

.add_a_post_photo_photo_div{
    margin-left: 50px;
    margin-top: 0px;
}

.add_a_post_photo_profile {
    height: 30px;
    width: 30px;
    /* border: 2px solid black; */
    /* margin-bottom: 450px;
    margin-right: 10px; */
}

.add_a_post_photo_profile_name {
    display: flex;
    justify-content: center;
    margin-right:450px;
    gap: 10px; 
    /* border: none; */
}


.like-btn {
    background-color: gray;
    border: none;
    padding: 5px 12px;
    cursor: pointer;

}

.like-btn.liked {
    background-color: blue;
    color: white;
}

.like-coun{
  margin-left: 10px;
  color: gray;
}

/* .add_a_post_like {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
} */

.add_a_post_like_comment {
    display: flex;
    justify-content: center;
    
    margin-right: 50px;
    margin-top: 20px;
}

.add_a_post_comment{
    display: flex;
    justify-content: center;
    margin-right: 5px;
}

.add_a_post_comment a{
    text-decoration: none;
}

.add_a_post_comment_save{
    display: flex;
    flex-direction: row;
}

.add_a_post_comment_save2 {
    display: flex;
    justify-content: center;
}

.add_a_post_span{
    margin-right: 280px;
}

/* login.html */

body{
    background-color: rgb(241, 245, 246);
}

.login_container{
    display: flex;
    justify-content: center;
    margin-top: 80px;
    gap: 280px;
}

.login_container h1{
    font-size: 50px;
    color: rgb(47, 117, 182);
}

.login{
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 100px; */
    height: 350px;
    width: 400px;
    /* border: 1px solid gray; */
    border-radius: 2%;
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    margin-right: 100px;
}

.login_msg{
    margin-left: 50px;
    color: red;
}

.login_username{
    height: 50px;
    width: 300px;
    text-align: center;
    font-size: 20px;
}

.login_password{
    height: 50px;
    width: 300px;
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
}

.login_submit_button_div{
    height: 80px;
    border-bottom: 1px solid rgb(190, 188, 188);
}

.login_submit{
    margin-left: 0px;
    height:40px;
    width: 306px;
    margin-top: 10px;
    font-size: 20px;
    background-color: rgb(47, 117, 182);
    color: white;
}

.login_registration{
    margin-top: 30px;
    margin-left: 0px;
    height:40px;
    width: 306px;
    border: 1px solid black;
    text-align: center;
    align-items: center;
    background-color: rgb(50, 208, 50);
}

.login_registration p{
    margin-top: 10px;
    
}

.login_registration a{
    color: white;    
}

/* registration.html */

.registration_container{
    display: flex;
    justify-content: center;
    margin-top: 80px;
    gap: 280px;
}

.registration_container h1{
    font-size: 50px;
    color: rgb(47, 117, 182);
}

.registration{
    /* display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px; */

    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 100px; */
    height: 350px;
    width: 400px;
    /* border: 1px solid gray; */
    border-radius: 2%;
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    margin-right: 100px;
}

.registration_msg{
    margin-left: 50px;
    color: red;
}

.registration_username{
    height: 50px;
    width: 300px;
    text-align: center;
    font-size: 20px;
}

.registration_password{
    height: 50px;
    width: 300px;
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
}

.registration_submit_button_div{
    height: 80px;
    border-bottom: 1px solid rgb(190, 188, 188);
}

.registration_submit{
    /* margin-left: 80px;
    height:40px;
    width: 150px;
    margin-top: 10px;
    font-size: 20px; */

    margin-left: 0px;
    height:40px;
    width: 306px;
    margin-top: 10px;
    font-size: 20px;
    background-color: rgb(47, 117, 182);
    color: white;
}

.registration_login{
    /* margin-top: 50px;
    margin-left: 55px; */

    margin-top: 30px;
    margin-left: 0px;
    height:40px;
    width: 306px;
    border: 1px solid black;
    text-align: center;
    align-items: center;
    background-color: rgb(50, 208, 50);
}

.registration_login p{
    margin-top: 10px;
}

.registration_login a{
    color: white;    
}

/* deletePost */

.menu{
    display: none;
    position: absolute;
    background: white;
    border: 1px solid black;
    padding: 5px;
}

.menu_container{
    position: relative;
}


/* dashboard */

.add_a_post_photo_top_row{
    display: flex;
    justify-content: center;
    gap: 80px;
}

.friends_request_heading{
    width: 500px;
}

.friends_request_accept_delete{
    display: flex;
    justify-content: center;
}

.friend_requests{
    display: flex;
    flex-direction: column;
}

/* friend requests */

.friend_requests_box {
    width: 400px;
    height: 500px;
    /* border: 1px solid black; */
    overflow-y: auto;   
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 1%;
}

/* .friend_requests_box p{
    margin-left: 115px;
} */

.friend_requests_box h1 {
    text-align: center;
    position: sticky;
    top: 0;
    background: white;
    font-size: 25px;
}

.friends_request_accept_delete{
    margin-right: 200px;
    gap: 10px;
    align-items: center;
    margin-left: 100px;
    margin-bottom: 10px;
}

.friends_request_img{
    height: 40px;
    width: 40px;
}

.friends_request_name{
    margin-left: 10px;
}

.friends_request_accept_btn_div{
    margin-left: 30px;
    border: none;
}

.friends_request_accept_btn{
    border: 1px solid black;
    background-color: rgb(188, 202, 215);
    color: black;
}

.friends_request_delete_btn{
    border: 1px solid black;
    background-color: rgb(188, 202, 215);
    color: black;
}

/* profile_photos */

.profile_photos{
    width: 400px;
    height: 550px;
    /* border: 2px solid black; */
    margin-left: 200px;
    margin-top: 30px;
    overflow-y: auto;
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.profile_photos_photos{
    margin-left: 100px;
    /* margin-top: 20px; */
}

.profile_photos_button_div{
    height: 30px;
    width: 300px;
    border-bottom: 1px solid rgb(201, 198, 198) ;
    margin-left: 50px;
    margin-bottom: 10px;
}

.profile_photos_button{
    /* margin-top: 5px; */
    margin-left: 50px;
    margin-bottom: 20px;
    border: 1px solid black;
    background-color: rgb(188, 202, 215);
}

.profile_photos h1{
    position: sticky;
    top: 0px;
    background: white;
    margin-left: 5px;
    text-align: center;
}

/* my_friends */

.my_friends{
    height: 550px;
    width: 400px;
    /* border: 2px solid black; */
    margin-left: 200px;
    margin-top: 30px;
    overflow-y: auto;
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.my_friends h1{
    margin-left: 0px;
    position: sticky;
    top: 0;
    background: white;
    text-align: center;
}

.my_friends1 {
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    margin-bottom: 20px;
}

.my_friends2 {
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    margin-bottom: 20px;
}

.my_friends1_img{
    width:40px;
    height:40px
}

.my_friends2_img{
    width:40px;
    height:40px
}

.my_friends1_name{
    margin-top: 15px;
    margin-left: 5px;
}

.my_friends1_unfriend_button_div{
    margin-top: 15px;
    margin-left: 10px;
}

.my_friends1_unfriend_button{
    background-color: rgb(188, 202, 215);
    border: 1px solid black;
}

.my_friends1_paragraph{
    margin-left: 5px;
}

.my_friends2_name{
    margin-top: 15px;
    margin-left: 5px;
}

.my_friends2_unfriend_button_div{
    margin-top: 15px;
    margin-left: 10px;
}

.my_friends2_unfriend_button{
    background-color: rgb(188, 202, 215);
    border: 1px solid black;
}

.my_friends2_paragraph{
    margin-left: 5px;
}

/* friend request button */

.profile_request_button{

}

/* notifications */

.notifications{
    height: 550px;
    width: 400px;
    /* border: 2px solid black; */
    margin-left: 200px;
    margin-top: 30px;
    overflow-y: auto;
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.notifications h1{
    margin-left: 5px;
    position: sticky;
    top: 0;
    background: white;
    text-align: center;
}

.notifications_name{
    margin-left: 20px;
    margin-bottom: 10px;
}

/* comments */

.comments{
    height: 550px;
    width: 800px;
    /* border: 2px solid black; */
    margin-left: 200px;
    margin-top: 30px;
    overflow-y: auto;
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.comments h1{
    position: sticky;
    top: 0;
    background: white;
    text-align: center;
}

.comment_page{
    display: flex;
    flex-direction: row;
    margin-left: 50px;
    margin-bottom: 5px;
}

.comment_page_comment {
    margin-left: 30px;
    margin-top: 10px;
    
}

.comment_page_photo{
    margin-top: 15px;
}

.comment_page_name{
    margin-left: 5px;
    margin-top: 10px;
}

/* add_a_post_edit_page  */

.add_a_post_edit_page{
    height: 500px;
    width: 400px;
    /* border: 2px solid black; */
    margin-top: 20px;
    margin-left: 450px;
    background-color: white;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.add_a_post_edit_photo_div{
    margin-top: 20px;
    margin-left: 95px;
    width:200px;
    height:200px;
    /* border:2px solid black; */
    overflow: hidden;
    padding-top: 50px;

}

.add_a_post_edit_input_file_div{
    margin-top: 20px;
    margin-left: 150px;
}

.add_a_post_edit_save_button_div{
    margin-left: 150px;
    margin-top: 10px;
    
}

.add_a_post_edit_save_button{
    width: 83px;
    background-color: rgb(188, 202, 215);
    border: 1px solid black;
}

.add_a_post_edit_photo{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* friend request button */

.friend_request_friends_disabled-button{
    background-color: rgb(23, 244, 23);
    color: black;
    margin-right: 200px;
}

.profile_request_button{
    background-color: blue;
    color: white;
    margin-right: 200px;
    border: 1px solid black;
}

.friend_request_friend_request_sent_disabled_button{
    background-color: rgb(103, 103, 250);
    color: white;
    margin-right: 200px;
    border: 1px solid black;
}