html {
    scroll-behavior: smooth;
}

body {
    background-color: #f0f0f0 !important;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 0px !important;
    color: #000000;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-size: 14px !important;
    /* background: url(../../assets/img/backgrounds/bg.jpg) fixed; */
    background-size: 100% 100%;
    background: #f1f1f1;
}

.table td {
    padding: 0.45rem !important;
}

table.dataTable thead th.dt-colresizable-hover {
    cursor: col-resize;
}

table.dataTable thead th.dt-colresizable-bound-min,
table.dataTable thead th.dt-colresizable-bound-max {
    opacity: 0.2;
    cursor: not-allowed !important;
}

/*.table th {
    padding: 0.45rem !important;
}
.dataTables_scroll .table.dataTable thead th{
    padding: 0 !important;
}

.dataTables_scroll .dataTables_scrollHeadInner .table.dataTable thead th{
    padding: 0.45rem !important;
} */

table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    bottom: 0.5em !important;
}

.navbar.navber-top {
    border-bottom: solid 2px #ecedef;
}

.table>tbody {
    background-color: white !important;
}

.navbar.navber-top .nav-item {
    margin: 0 5px;
}

.navbar.navber-top .icon-animated-bell {
    -webkit-animation: ring 4s 0.7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s 0.7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s 0.7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

.dataTables_pager {
    text-align: right;
}

table.dataTable thead .checkbox-short-none.sorting_asc:before,
table.dataTable thead .checkbox-short-none.sorting_desc:after,
table.dataTable thead .checkbox-short-none.sorting_asc:after,
table.dataTable thead .checkbox-short-none.sorting_desc:before,
table.dataTable thead .checkbox-short-none.sorting:after,
table.dataTable thead .checkbox-short-none.sorting:before {
    opacity: 0;
}

.btn-light {
    background-color: #f0f1f3 !important;
    border: 1px solid #f0f1f3 !important;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }

    1% {
        -webkit-transform: rotateZ(30deg);
    }

    3% {
        -webkit-transform: rotateZ(-28deg);
    }

    5% {
        -webkit-transform: rotateZ(34deg);
    }

    7% {
        -webkit-transform: rotateZ(-32deg);
    }

    9% {
        -webkit-transform: rotateZ(30deg);
    }

    11% {
        -webkit-transform: rotateZ(-28deg);
    }

    13% {
        -webkit-transform: rotateZ(26deg);
    }

    15% {
        -webkit-transform: rotateZ(-24deg);
    }

    17% {
        -webkit-transform: rotateZ(22deg);
    }

    19% {
        -webkit-transform: rotateZ(-20deg);
    }

    21% {
        -webkit-transform: rotateZ(18deg);
    }

    23% {
        -webkit-transform: rotateZ(-16deg);
    }

    25% {
        -webkit-transform: rotateZ(14deg);
    }

    27% {
        -webkit-transform: rotateZ(-12deg);
    }

    29% {
        -webkit-transform: rotateZ(10deg);
    }

    31% {
        -webkit-transform: rotateZ(-8deg);
    }

    33% {
        -webkit-transform: rotateZ(6deg);
    }

    35% {
        -webkit-transform: rotateZ(-4deg);
    }

    37% {
        -webkit-transform: rotateZ(2deg);
    }

    39% {
        -webkit-transform: rotateZ(-1deg);
    }

    41% {
        -webkit-transform: rotateZ(1deg);
    }

    43% {
        -webkit-transform: rotateZ(0);
    }

    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }

    1% {
        -moz-transform: rotate(30deg);
    }

    3% {
        -moz-transform: rotate(-28deg);
    }

    5% {
        -moz-transform: rotate(34deg);
    }

    7% {
        -moz-transform: rotate(-32deg);
    }

    9% {
        -moz-transform: rotate(30deg);
    }

    11% {
        -moz-transform: rotate(-28deg);
    }

    13% {
        -moz-transform: rotate(26deg);
    }

    15% {
        -moz-transform: rotate(-24deg);
    }

    17% {
        -moz-transform: rotate(22deg);
    }

    19% {
        -moz-transform: rotate(-20deg);
    }

    21% {
        -moz-transform: rotate(18deg);
    }

    23% {
        -moz-transform: rotate(-16deg);
    }

    25% {
        -moz-transform: rotate(14deg);
    }

    27% {
        -moz-transform: rotate(-12deg);
    }

    29% {
        -moz-transform: rotate(10deg);
    }

    31% {
        -moz-transform: rotate(-8deg);
    }

    33% {
        -moz-transform: rotate(6deg);
    }

    35% {
        -moz-transform: rotate(-4deg);
    }

    37% {
        -moz-transform: rotate(2deg);
    }

    39% {
        -moz-transform: rotate(-1deg);
    }

    41% {
        -moz-transform: rotate(1deg);
    }

    43% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    1% {
        transform: rotate(30deg);
    }

    3% {
        transform: rotate(-28deg);
    }

    5% {
        transform: rotate(34deg);
    }

    7% {
        transform: rotate(-32deg);
    }

    9% {
        transform: rotate(30deg);
    }

    11% {
        transform: rotate(-28deg);
    }

    13% {
        transform: rotate(26deg);
    }

    15% {
        transform: rotate(-24deg);
    }

    17% {
        transform: rotate(22deg);
    }

    19% {
        transform: rotate(-20deg);
    }

    21% {
        transform: rotate(18deg);
    }

    23% {
        transform: rotate(-16deg);
    }

    25% {
        transform: rotate(14deg);
    }

    27% {
        transform: rotate(-12deg);
    }

    29% {
        transform: rotate(10deg);
    }

    31% {
        transform: rotate(-8deg);
    }

    33% {
        transform: rotate(6deg);
    }

    35% {
        transform: rotate(-4deg);
    }

    37% {
        transform: rotate(2deg);
    }

    39% {
        transform: rotate(-1deg);
    }

    41% {
        transform: rotate(1deg);
    }

    43% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9fa !important;
    --bs-table-accent-bg: none !important;
}

.table-hover tbody tr:hover {
    background-color: #e7f1ff !important;
}

div.dataTables_wrapper div.dataTables_filter input {
    width: 95px !important;
    transition: 0.5s;
}

div.dataTables_wrapper div.dataTables_filter input:hover {
    width: 150px !important;
    transition: 0.5s;
}

/* notifications start */

.notifications {
    width: 300px;

    border-radius: 5px 0px 5px 5px;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.notifications h2 {
    font-size: 20px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #fff;
    background-image: url("../img/Notification-popup-bg.jpg");
    text-align: center;
    line-height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notifications h2 span {
    background-color: #ef0000;
    padding: 0 10px;
    color: #fff;
    height: 32px;
    line-height: 32px;
    margin-left: 8px;
}

.notifications h2 small {
    font-size: 14px;
}

.notifications-item {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 6px 9px;
    margin-bottom: 0px;
    cursor: pointer;
}

.notifications-item:hover {
    background-color: #eee;
}

.notifications-item img {
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 9px;
    border-radius: 50%;
    margin-top: 2px;
}

.notifications-item .text h4 {
    color: #777;
    font-size: 16px;
    margin-top: 3px;
}

.notifications-item .text p {
    color: #aaa;
    font-size: 12px;
}

/* notifications end */
.modal-header {
    box-shadow: 0 3px 4px -2px #ebebee !important;
    border-bottom: none !important;
    border-top-right-radius: 4px !important;
    border-top-left-radius: 4px !important;
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    background: url(../../assets/img/backgrounds/header-bg.jpg);
    /* background-size: 350px; */
    background-repeat: no-repeat;
    background-position: -178px -1px;
}

.modal-footer {
    background-color: #f2f2f2;
    padding: 10px 15px !important;
}

.card {
    box-shadow: 0 7px 14px 0 rgb(59 65 94 / 10%), 0 3px 6px 0 rgb(0 0 0 / 7%);
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid #edf2f9;
    border-radius: 0.375rem;
    background: url(../../assets/img/backgrounds/vector.jpg);
    /* background-size: 350px; */
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
}

.card .card-header {
    background: url(../../assets/img/backgrounds/header-bg.jpg);
    /* background-size: 350px; */
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;
    background-size: cover;
}

.card .card .card-header {
    background: none;
    /* background-size: 350px; */
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;

}



.card .card {

    background-image: none !important;
}

.modal-header .close {
    margin: 0 !important;
    color: #1c2121 !important;
    opacity: 1 !important;
    padding: 0 !important;
    font-size: 20px !important;
    transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.modal-header .close:hover {
    color: #3978fe !important;
    transform: rotate(180deg);
    margin: 0px !important;
}

.close {
    transition: transform 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.close:hover {
    color: #3978fe !important;
    transform: rotate(180deg);
}

.visible-scrollbar,
.invisible-scrollbar,
.mostly-customized-scrollbar {
    display: block;
    width: 100%;
    overflow: auto;
    height: 210px;
}

.invisible-scrollbar::-webkit-scrollbar {
    display: none;
}

.mostly-customized-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 10px;
    background-color: rgb(214, 214, 214);
}

.mostly-customized-scrollbar::-webkit-scrollbar-thumb {
    background: rgb(92, 92, 92);
}

.mostly-customized-scrollbar.thematic-achievement {
    height: auto;
}

/* Styles setting icon go here */

.animation-wrapper {
    color: #667984;
    font-family: "Roboto", sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

.fa-animation {
    height: 45px;
    width: 55px;
    margin: 0 auto;
    position: relative;
    margin-top: 6px;
}

.fa-animation .fa {
    position: absolute;
}

.fa-lg {
    font-size: 45px;
    top: 8px;
    left: 0px;
    color: white;
}

.fa-md {
    font-size: 30px;
    top: 0px;
    left: 23px;
    color: white;
}

.fa-sm {
    font-size: 24px;
    top: 25px;
    left: 15px;
    color: white;
}

/*------------Table Header Action btn start-------------------*/

.action-btn-group {
    background-color: #ffffff;
    display: inline-block;
    padding: 5px;
    border: solid 1px #f2f2f2;
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    position: absolute;
    z-index: 1;
    left: 15px;
    margin-top: -2px;
    min-width: 148px;
}

.action-btn-group h4 {
    float: left;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 30px;
    margin-right: 15px;
}

.action-btn-group .btn-light {
    color: #212529;
    background-color: #f3f3f3;
    border-color: #f3f3f3;
}

/*------------Table Header Action btn start-------------------*/

/*---------------------List View Table start-----------------------------*/

/* .listview-table  .listTableHeader {
    position: sticky;
    top: 0px;
    z-index: 1;
}
.listview-table tbody tr:hover .listViewlastActionColumn {
    position: sticky;
    visibility: visible !important;
}
.rowActionContainer {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
    background: -webkit-linear-gradient(left, white, white 30%, #e7f1ff 30%, #e7f1ff);
}
.listViewlastActionColumn {
    right: 0px;
    background-color: inherit;
} */

@media (max-width: 1230px) {
    /* .header-accessibility .accessibility-font {
        display: block;
        align-items: center;
        height: 60px;
    }
    .header-accessibility .accessibility-font h5 {
        font-size: 12px;
        margin-bottom: 10px;
        margin-right: 0 !important;
    }
    a.btn.reset-all-btn {
        position: absolute;
        right: 55px;
    } */
}

@media (min-width: 576px) {
    .modal-dialog-90 {
        max-width: 98% !important;
        margin: 0.5rem auto !important;
    }
}

/***** Sidebar *****/

.sidebar {
    width: 322px;
    height: auto;
    position: fixed;
    top: calc(50% - 210px);
    right: -325px;
    z-index: 9999;
    transition: all 0.3s;
    text-align: left;
}

.sidebar .filter-body.mostly-customized-scrollbar {
    display: block;
    width: 100%;
    overflow: auto;
    height: auto;
    max-height: 365px;
}

.sidebar.active {
    right: 24px;
}

.dismiss {
    width: 35px;
    height: 35px;
    transition: all 0.3s;
    background: #444;
    border-radius: 4px;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    color: white;
    float: right;
    position: relative;
    right: -12px;
    top: -6px;
}

.dismiss:hover,
.dismiss:focus {
    background: #555;
    color: #fff;
}





.pending-notification-section {
    min-height: 500px;
}

.pending-notification-section #sidebar .left-section {
    opacity: 1;
    transition: all .5s ease;
    width: 278px;
    min-height: 283px;
    height: auto;
    overflow: inherit;
}

.pending-notification-section .accordion-item .accordion-header .accordion-button {
    display: flex;
    align-items: center;
    padding: 8px;
}

.pending-notification-section .accordion-item .accordion-header h5 {
    width: calc(100% - 200px);
    margin-bottom: 0;
    font-size: 16px;
}

.pending-notification-section .accordion-item .accordion-header .badge-section {
    width: 200px;
    float: right;
    padding-right: 10px;
}



/* scroll to top button */
#scroll {
    display: inline-block;
    background: #ffcb05;
    border: solid 2px #00adef;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 60px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);

}

#scroll:hover {
    cursor: pointer;
    background-color: #333;

}

#scroll:active {
    background-color: #555;

}

#scroll.show {
    opacity: 1;
    visibility: visible;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #252525;
    color: black;
}
#scroll:hover span {

    border-bottom-color: #ffffff;
}

.btn-secondary {
    color: #fff !important;
    background-color: #007aef !important;
    border-color: #007aef !important;
}


.dropdown-menu .dropdown-item:hover {
    color: #fff !important;
    background-color: #007aef !important;
    border-radius: 4px;

}

nav.alertify-buttons {
    position: relative;
    background: #fff !important;
}


/*-------------------------------------------*/


/*** Layout ***/
.sidebar1 {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: hidden;
    background: var(--light);
    transition: 0.5s;
    z-index: 999;
    /* background-image: url(../img/Digitalsakhi_other_withoutbg.png); */
    background-repeat: no-repeat;
    background-position-y: bottom;
    background-size: 54%;
    background-position-x: right;
    overflow-x: hidden;
}


.sidebar1 .navbar-nav.mostly-customized-scrollbar {
    width: 250px;
    height: calc(100vh - 140px);
    padding-right: 6px;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    /* background: #e0e1e2; */
    transition: 0.5s;
}

.logo-left {
    width: 250px;
}

.logo-left img {
    width: calc(100% - 20px);
    margin: 10px;
}

.navbar.navbar-custom {
    background: #ffcb05;
    border: solid 3px #00adef;
    border-top: none;
    margin-bottom: 15px;
}

.navbar.navbar-custom .admin-img {
    width: 40px;
    height: 40px;
}

@media (min-width: 992px) {
    .sidebar1 {
        margin-left: 0;
    }

    .sidebar1.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar1 {
        margin-left: -250px;
    }

    .sidebar1.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar1 .navbar .navbar-nav .nav-link {
    padding: 7px 10px;
    color: var(--dark);
    font-weight: 500;
    border-left: 3px solid var(--light);
    border-radius: 0 30px 30px 0;
    outline: none;
    margin: 2px 0;
    display: flex;
    align-items: center;
}

.sidebar1 .navbar .menu-avatar {
    width: 30px;
    height: 30px;
}

.sidebar1 .navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
    background: #c5e0ff;
    border-color: var(--primary);
}

.sidebar1 .navbar .navbar-nav .nav-link.active {
    color: #ffcb05;
    background: #2d3042;
    border-color: var(--primary);


}

.sidebar1 .navbar .navbar-nav .nav-link.active i {
    color: var(--primary);
}

.sidebar1 .navbar .navbar-nav .nav-link i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.sidebar1 .navbar .navbar-nav .nav-link p {
    width: calc(100% - 66px);
    word-wrap: break-word;
    white-space: normal;
    font-size: 14px;
}

.sidebar1 .navbar .navbar-nav .nav-link:hover i,
.sidebar1 .navbar .navbar-nav .nav-link.active i {
    background: var(--light);
}

.sidebar1 .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
    width: auto;
    height: auto;
}

.sidebar1 .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar1 .navbar .dropdown-item {
    margin-left: 25px;
    border-radius: 0 30px 30px 0;
    font-size: 14px;
    width: 205px;
    border-radius: 20px;

}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--dark);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
    width: auto;
    height: auto;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}

.navbar-custom {
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
    margin: 0 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.widget {
    transition: all 500ms ease-in-out;
}

.widget:hover {
    box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.2);
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);

}


.dataTables_scrollBody {
    min-height: 205px;
}


.client-logo-section {
    width: 240px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-section .login-client-logo {
    height: 45px;
    width: 48px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    -webkit-box-shadow: 0px 0px 11px 1px rgba(217, 217, 217, 1);
    -moz-box-shadow: 0px 0px 11px 1px rgba(217, 217, 217, 1);
    box-shadow: 0px 0px 11px 1px rgba(217, 217, 217, 1);
    margin: 4px;
    transition: 0.3s;
}

.client-logo-section .login-client-logo:hover {
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 11px 1px rgb(196, 196, 196);
    -moz-box-shadow: 0px 0px 11px 1px rgb(197, 197, 197);
    box-shadow: 0px 0px 11px 1px rgb(197, 197, 197);
}

.client-logo-section .login-client-logo img {
    width: 44px;
    margin: 2px;
}

.digitalsakhi-logo-header {
    position: absolute;
    z-index: 111;
    width: 50px;
    height: 50px;
    margin: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 60px;

}

.digitalsakhi-logo-header img {
    width: 45px;
}


.digitalsakhi-logo-view {
    width: 150px;
    height: 150px;
    margin: 5px;
    border-radius: 50%;

}

.digitalsakhi-logo-view img {
    width: 110px;
}



/*-----------------------------------------------------------------------------------------*/

.profile-section {
    display: flex;
    justify-content: center;
    align-items: start;
}

.profile-section .profile-left {
    width: 300px;
    /* border: solid 1px #ccc; */
    /* border-radius: 5px; */
    margin-right: 10px;
    padding: 5px
}

.profile-section .profile-left .prifile-title {
    font-size: 17px;
    text-align: center;
}


.profile-section .details-form-section {
    width: calc(100% - 310px);
    border: solid 1px #ccc;
    border-radius: 5px;
    padding: 15px;
    margin-top: 7px;
}

.profile-section .details-form-section label{
  font-weight: 700;
}



/* Profile Card */
.profile-section .profile-card {
    position: relative;
    padding: 15px;
    background: rgb(232 232 232 / 80%);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3sease;
}

.profile-section .profile-card:hover {
    transform: translateY(-1px);
}

.profile-section .card-content {
    position: relative;
    z-index: 2;
}

/* Avatar Styles */
.profile-section .avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 12px auto 18px;
}

.profile-section .avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.profile-section .avatar-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #60a5fa, #a78bfa);
    opacity: 0.8;
}

.profile-section .avatar-inner img {
    width: 100%;
}

.profile-section .avatar-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #60a5fa, #a78bfa);
    border-radius: 50%;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.profile-section .avatar:hover .avatar-glow {
    opacity: 0.5;
}

.profile-section .avatar-border {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #60a5fa, #a78bfa) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

/* Profile Info */
.profile-section .profile-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0;
}

.profile-section .name {
    font-size: 13px;
    margin-bottom: 0;
    color: #2b2e31;

}

.profile-section .title {
    color: #768294;
    font-size: 13px;
    margin-bottom: 0;
}



/* Action Buttons */
.profile-section .actions {
    display: flex;
    gap: 1rem;
}

.profile-section .action-btn {
    flex: 1;
    position: relative;
    padding: 0.8rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-section .action-btn span {
    position: relative;
    z-index: 1;
}

.profile-section .btn-effect {
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
}

.profile-section .primary {
    background: linear-gradient(45deg, #3b6497d2, #715daab7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-section .primary .btn-effect {
    background: linear-gradient(45deg, #60a5fa, #a78bfa);
    opacity: 0;
}

.profile-section .primary:hover .btn-effect {
    opacity: 0.2;
}

.profile-section .secondary {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-section .secondary .btn-effect {
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.profile-section .secondary:hover .btn-effect {
    opacity: 1;
}

/* Card Effects */
.profile-section .card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    animation: shine 8s infinite;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

.profile-section .card-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    background: linear-gradient(45deg, #60a5fa, #a78bfa) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-section .profile-card:hover .card-border {
    opacity: 1;
}

.profile-section .card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #60a5fa, #a78bfa);
    border-radius: 6;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.profile-section .profile-card:hover .card-glow {
    opacity: 0.05;
}

/* Responsive Design */
@media (max-width: 480px) {


    .profile-section .profile-card {
        padding: 1.5rem;
    }

    .profile-section  .avatar-wrapper {
        width: 100px;
        height: 100px;
    }

    .profile-section  .name {
        font-size: 1.5rem;
    }


}
