﻿/* Button styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
   /* background-color: #007bff;*/
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

    .btn:hover {
        background-color: #0062cc;
    }

.main-profile {
    display: inline-flex;
    align-items: flex-start;
  
}
.tab-content {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 -4px 8px rgba(0, 0, 0, 0.1) inset !important;
}
.mainbody {
    margin-top: 20px;
}

.btn-primary {
    background: #54BAB9;
    color: #F7ECDE;
}

    .btn-primary:hover {
        background-color: #54bab9a3;
    }

.btn-danger {
    background-color: #dc3545;
}

    .btn-danger:hover {
        background-color: #c82333;
    }

/* Profile image styles */
.photo {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 1rem;
}

    .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.photo-upload {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    border-radius: 50%;
}

    .photo-upload button {
        border: none;
        background-color: transparent;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .photo-upload button:hover {
            transform: scale(1.2);
        }

/* Profile info styles */
.name-con {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
}

.name-del {
    flex: 1;
    margin-bottom: 20px;
}

    .name-del h1 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: bold;
        color: #000000;
        font-family: "Open Sans";
        text-decoration: none;
    }

    .name-del h4 {
        margin: 0;
        font-size: 1rem;
        font-weight: normal;
        color: #333;
    }

.statss {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    /* padding-right: -202px; */
    margin-right: -20px;
}

.stat {
    text-align: center;
    margin-bottom: 1rem;
}


.number-stat {
    padding: 0px;
    font-size: 14pt;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: black;
}

.desc-stat {
    margin-top: -17px;
    font-size: 10pt;
}

.table-user-information {
    width: 100%;
}

    .table-user-information td {
        padding: 0.5rem;
        border-top: none;
        font-size: 1rem;
        font-weight: normal;
        color: black;
    }

        .table-user-information td:first-child {
            width: 30%;
            color: black;
        }

        .table-user-information td.text-primary {
            color: black;
        }

.desc {
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
    color: #333;
    white-space: pre-wrap;
}
.right{
    width:1140px !important;
}

/* Media queries for mobile devices */
@media only screen and (max-width: 767px) {
    /* Profile image styles */
    .photo img{
        width: 150px;
        height: 150px;
        margin-left: -43px;
        margin-top: -30px;
    }
   

    .photo-upload {
        width: 30px;
        height: 30px;
        margin-top: -45px;
        margin-bottom: 15px;
        padding-left: 0;
        background-color: #00000085;
    }

    /* Profile info */
    .name-del {
        flex-direction: column;
        align-items: center;
    }

        .name-del h1 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .name-del h4 {
            font-size: 1rem;
        }



    .stat {
        margin: 0.5rem 0;
    }

    .number-stat {
        font-size: 1.5rem;
    }

    .desc-stat {
        font-size: 0.8rem;
    }

    /* User information table */
    .table-user-information td:first-child {
        width: 40%;
    }

    .desc {
        font-size: 0.8rem;
    }

    .table-user-information {
        width: 120%;
    }
}
.nav-items {
    width: 33.3%!important;
}
td {
    min-width:150px!important;
}
@media screen and (min-width: 1024px) {
    .main-profile {
        display: flex;
    }
    .contain {
        min-width: 800px;
    }

    .statss {
        margin-left: 100px;
    }
}





/*Changes*/
.description {
    align-self: center;
    overflow: hidden;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    -webkit-box-orient: vertical;
    max-width: 42ch;
}

.UploadIcon {
    background-color: #54bab9;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 5px;
}

    .UploadIcon a {
        color: white;
        margin-right: 5px;
    }

.mycontainer {
    max-width: 100%;
    margin: auto;
    padding: 0 !important;
    width: 90%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.10);
}

i {
    margin: 4px;
}

header {
    background: #eee;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: none;
}

    header img {
        width: 100%;
        height: 150px;
    }

    header i {
        position: relative;
        cursor: pointer;
        right: -96%;
        top: -25px;
        font-size: 18px !important;
        color: black;
    }

.link-space {
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    justify-content: center;
}

.header-align {
    position: relative;
    margin-top: -22px;
}

.required:after {
    content: " *";
    color: red;
}

@media (max-width:800px) {
    header {
        height: 150px;
    }

        header i {
            right: -90%;
        }
}

.videoinfo {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.10);
    width: auto;
    height: auto;
    cursor: pointer;
    max-width: 100%;
    border-radius: 30px;
    margin-bottom: 20px;
    z-index: 00;
}

.gallery video {
   
    width: auto;
    height: auto;
    cursor: pointer;
    max-width: 100%;
    padding: 10px;
}

@media (max-width:990px) {
    /* .mynav {
        display: none;
    } */

    .follow {
        /*width: 50%;*/
        margin-left: 25%;
        display: block;
        position: absolute;
        text-align: center;
    }
    .tab-content{
        padding:0px !important;
    }
    .completeprofile {
        /*width: 50%;*/
        margin-left: 25%;
        display: block;
        position: absolute;
        text-align: center;
    }

    .upload {
        /*width: 50%;*/
        margin-left: 25%;
        display: block;
        position: absolute;
        text-align: center;
    }

    .gallery {
        padding: 0px;
    }

    .detailinfo {
        margin-left: -15px !important;
        justify-content: center;
    }
}

.info-align {
    margin-top: -12px;
    float: left;
    padding-left: 27px;
}
/*******Password Page********/
.pmd-card {
    display: block;
    padding: 1px 0;
    margin-bottom: 30px;
    margin-top: 70px;
    background-color: #fff;
    border: none;
    border-radius: .25rem;
    -moz-box-shadow: 0 6px 18px 0 rgba(0,0,0,.06);
    -webkit-box-shadow: 0 6px 18px 0 rgba(0,0,0,.06);
    box-shadow: 0 6px 18px 0 rgba(0,0,0,.06);
}

.del {
    margin-left: 125px;
}

@media (max-width:540px){
    .contain{
        min-width:300px;
    }
}
@media (min-width: 540px) and (max-width: 990px) {
    .contain {
        min-width: 500px;
    }
}
@media (min-width: 1024px) and (max-width: 1200px){
    .contain {
        min-width: 700px;
    }
}