.my-profile-card {
    height: 100vh;
    overflow: scroll;
    border-radius: 30px;
    /* background-color: #f3f4f9; */
    /* padding: 30px 30px; */
    margin-bottom: 100px;
}

.my-profile-card::-webkit-scrollbar {
    width: 0;
}

/* Visible when scrolling */
.my-profile-card.show-scroll::-webkit-scrollbar {
    width: 4px;
}

.my-profile-card.show-scroll::-webkit-scrollbar-thumb {
    background: #cacaca;
}

.my-profile-card::-webkit-scrollbar-track {
    background: transparent;
}

.profile-card {
    max-width: 350px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    background: #f3f4f9;
    border: 1.5px solid #c5c5c6;
    margin-bottom: 80px;
}

.profile-header {
    height: 130px;
    background: #4b38b3;
    position: relative;
}

.profile-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    position: relative;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 700;
    color: #606060;
}

.profile-body {
    position: relative;
    top: -30px;
    text-align: center;

    /* margin-top: 70px; */
}

.p-name {
    color: #000;
    font-size: 20px;
}

.p-mailid {
    color: #8e8e93;
    font-size: 14px;
}


.menu-card {
    margin: 10px 20px 0px 20px;
    border-radius: 10px;
    background-color: #fff;
}

.my-menu a {
    /* padding: 14px 18px; */
    font-size: 14px;
    color: #8e8e93;
}



.list-group-flush {
    /* padding: 10px 10px !important; */
    border: none !important;
    border-radius: 0px !important;
    margin: 0px !important;
}

.list-group-item {
    border: none !important;
    color: #8e8e93 !important;
    max-width: 100%;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0px !important;
    padding: 10px 20px !important;
    background-color: transparent !important;
}

.list-group-item i {
    width: 20px !important;
    margin-right: 10px !important;
}

.list-group-item:hover {
    background-color: #f5f5f5 !important;
}



.delete {
    color: red !important;
    font-weight: 500;
}

.link-section {
    position: relative;
    top: -15px;
}