.dashboardSec{
    padding: 111px 0 23px;
    min-height: calc(100vh - 490px);
    position: relative;
}
.dashboardSec::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 533px;
    background: url(../images/dashboard-bg.svg);
    left: 0;
    bottom: 0;
    z-index: -1;
    background-size: cover;
}
.dashboardSec h1{
    font-size: 25px;
    line-height: 170%;
    color: #0E145F;
    text-align: center;
    font-weight: 400;
}
.pageTableWrapper{
    box-shadow: 0px 0px 21px 0px #CACACA40;
    padding: 20px 30px;
    background: #FFFFFF;
    margin-top: 24px;
    border-radius: 16px;
}
.dashboardPagesWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.singleDashboardPageLink{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 16px 15px 13px;
    border: 1px solid #FFE0D7;
    background: #FFF3E7;
    gap: 10px;
    border-radius: 5px;
    max-width: 235px;
    width: 100%;
}
.singleDashboardPageLink .icon{
    padding: 8px;
    border-radius: 5.45px;
    background: #FFEAD6;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.singleDashboardPageLink .linkText{
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    color: #0E145F;
}
.singleDashboardPageLink:hover{
    border-color: #52bab0;
}
.singleDashboardPageLink.active{
    border-color: #52bab0;
}
.singleDashboardPageLink.active .icon path{
    fill: #52bab0;
}
.singleDashboardPageLink.active .icon.stroked path{
    fill: none;
    stroke: #52bab0;
}
.singleDashboardPageLink.active span{
    color: #52bab0;
}
.loadingOverlay{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 22;
}
.loadingOverlay img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){
    background: #52bab0;
}
div:where(.swal2-icon).swal2-info {
    border-color: #52bab0;
    color: #52bab0;
}


div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background: #52bab0;
}

div:where(.swal2-icon).swal2-info {
    border-color: #52bab0 !important;
    color: #52bab0 !important;
}

div:where(.swal2-icon).swal2-warning {
    border-color: #52bab0 !important;
    color: #52bab0 !important;
}

div:where(.swal2-container) div:where(.swal2-actions) {
    flex-direction: row-reverse;
    max-width: 194px;
    width: 100%;
    gap: 12px;
}

div:where(.swal2-container) button:where(.swal2-styled) {
    max-width: 82px;
    width: 100%;
    margin: 0;
}

div:where(.swal2-container) button:where(.swal2-close):hover {
    color: #52bab0;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover {
    background: #52bab0;
}
@media (max-width:1199px) {
    .dashboardPagesWrapper{
        gap: 15px;
    }
    .pageTableWrapper{
        padding: 20px 15px;
    }
    .singleDashboardPageLink .icon{
        padding: 6px;
        width: 28px;
        height: 28px;
    }
    .singleDashboardPageLink .linkText{
        font-size: 15px;
    }
}
@media (max-width:991px) {
    .singleDashboardPageLink .icon{
        display: none;
    }
    .singleDashboardPageLink{
        padding: 17px 13px 15px;
    }
    .singleDashboardPageLink .linkText {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .dashboardPagesWrapper{
        flex-wrap: wrap;
    }
}
@media (max-width:575px) {
    .pageTableWrapper{
        padding: 0;
        box-shadow: none;
        margin-top: 30px;
    }
    .singleDashboardPageLink{
        padding: 15px;
    }
    .singleDashboardPageLink{
        max-width: 175px;
    }
    .dashboardPagesWrapper {
        gap: 10px;
    }
    .dashboardSec h1{
        font-size: 23px;
        line-height: 160%;
    }
    .dashboardSec{
        padding: 105px 0 23px;
    }
}