.user_section {
    position: relative;
    padding: 15px 0;
    background-color: #f5f5f5;
}

.user_section .profile {
    border: 0;
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    margin-bottom: 15px;
}

.user_section .name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
}

.user_section .user_img {
    width: 50px;
}

.user_section .greet {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.user_section .greet p {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.user_section .menu {
    padding: 0;
    list-style-type: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    margin: 0;
}

.user_section .menu li a {
    display: block;
    position: relative;
    padding: 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s;
}

.user_section .menu li a::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
}

.user_section .menu li a i {
    margin-right: 10px;
}

.user_section .menu li a:hover,
.user_section .menu li a.active,
.user_section .menu li a.active::after,
.user_section .menu li a:hover::after {
    color: #4f6cff;
}

.user_section .profile_content {
    padding: 15px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    height: 100%;
}

.user_section .profile_content .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
}

.user_section .table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.user_section .table td {
    padding: 4px 5px;
    font-size: 14px;
    border-bottom: 0;
    color: #000;
}

.user_section .table td:first-child {
    font-weight: 600;
    color: #333;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.form-control,
.form-select {
    height: 50px !important;
    color: #262566;
    border: 1px solid #e8e8e8;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-size: 15px;
    padding: 10px 20px;
    width: 100%;

    /* height: 40px !important;
    width: 100% !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    outline: none !important;
    font-size: 14px !important;
    color: #696e77 !important;
    display: block !important;
    font-weight: 500 !important;
    border: 1px solid #e0e4e8 !important; */
}

.form-control:focus,
.form-select:focus {
    border-color: #4f6cff;
    box-shadow: none;
}

.btn {
    font-size: 14.5px !important;
}

.btn:focus {
    box-shadow: none !important;
}

.user_section .stats_card {
    position: relative;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-radius: 4px;
    border: 1px solid #4f6cff1b;
}

.user_section .stats_card .avatar {
    font-size: 16px;
    padding: 5px 10px;
    background-color: #4f6cff1b;
    color: #4f6cff;
    border-radius: 4px;
    margin-right: 15px;
}

.user_section .stats_card h6 {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    text-decoration: underline;
}

.edit_btn,
.cancel_btn {
    padding: 2px 10px;
    font-size: 14px;
    border: 0;
    border-radius: 2px;
    color: #fff !important;
}

.edit_btn i,
.cancel_btn i {
    font-size: 12px;
    margin-right: 5px;
}

.edit_btn {
    background-color: #4f6cff;
}

.cancel_btn {
    background-color: #c02e2e;
}

.trns_table {
    font-size: 13.5px;
}

.purch_table td,
.purch_table th {
    font-size: 13.5px !important;
    text-wrap: nowrap !important;
    padding: 5px 8px !important;
    color: #000 !important;
}

.bank_table td {
    padding: 0 !important;
}

.table-responsive::-webkit-scrollbar {
    height: 7px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #cacaca;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #b1b0b0;
}

.icon_remove {
    position: absolute;
    width: 25px;
    height: 25px;
    right: 0;
    top: 0;
    margin: 0;
    border: 0;
    border-radius: 2px;
    font-size: 12px;
    background-color: #c02e2e;
    color: #fff;
    cursor: pointer;
}

.one-line-clamp {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

@media (max-width: 576px) {
    .user_section .menu li a {
        padding: 10px 15px;
    }
}
