.profile-pic,
.profile-header {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.nav-profil {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

@media (max-width:991px) {
    .nav-profil {
    width:max-content;
    flex-direction: row;
    justify-content: center;
}
}


.change-profile-pic {
    position:absolute;
    bottom:0px;
    right:0;

}

.change-main-pic {
    position:absolute;
    bottom:1px;
    right:0;
    margin:5px;
}



.user-card-body {
    border:1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow:hidden;
    box-shadow: -4px 4px 5px 0px rgba(0,0,0,0.1);
        box-shadow: inset 0 0 3px 0px rgba(0,0,0,0.3);
    

}

.user-card-content {
    padding:30px;
    background: rgba(20, 20, 20, 1);
    box-shadow: -5px 5px 15px 0px rgba(0,0,0,0.2);


}

.user-sidebar-menu {
    padding:15px 0px 15px 15px;
    border-right: 1px solid rgba(50, 50, 50, 0.3);
    background: rgba(0, 0, 0, 0.15);
}
@media (max-width:991px) {
.user-sidebar-menu {
padding:0;
    border-right: none;
    background: rgba(0, 0, 0, 0.15);
}
}




.nav-pills .user-nav-link {
    color: #6c757d;
    border-radius:7px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 12px 20px;
    margin: 3px 0;
    transition: all 0.3s ease;
}
.nav-pills .user-nav-link.active {
    background: linear-gradient(0deg,rgba(20, 20, 20, 0.3) 0%, rgba(255, 255, 255, 0.005) 90%);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(50, 50, 50, 0.5) !important;
}
@media (max-width:991px) {
.nav-pills .user-nav-link {
    color: #6c757d;
    border-radius:7px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding: 12px 20px;
    margin: 0;
    transition: all 0.3s ease;
}
.nav-pills .user-nav-link.active {
    background: linear-gradient(0deg,rgba(50, 50, 50, 0.15) 0%, rgba(255, 255, 255, 0.005) 90%);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    border-bottom: 0px solid rgba(50, 50, 50, 0.5) !important;
}
}
@media (max-width:575px) {
.nav-pills .user-nav-link {
font-size:25px;
padding:15px 30px;
}

}



h5.user-info {
    border-bottom:1px solid rgba(200, 200, 200, 0.3);
    font-size:90%;
    padding:5px;
}





.profile-header {
    height: 250px;
    max-width:1920px;
    margin: 0 auto;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


.profile-pic {
    width: 120px;
    height: 120px;
    border: 4px solid #fff;
    margin-top: -60px;
    background-color: #fff;
}

.settings-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.settings-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-switch .form-check-input {
    width: 3em;
    height: 1.5em;
    margin-left: -3.5em;
}

.activity-item {
    border-left: 2px solid #e9ecef;
    padding-left: 20px;
    position: relative;
}

.activity-item::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4158D0;
    position: absolute;
    left: -7px;
    top: 5px;
}

.tab-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0s 0.3s;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
