:root{
    --primary:#6133BD;
    --secondary:#9255CE;
    --dark:#111827;
    --light:#f8fafc;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:sans-serif;
    background:#f4f6fb;
}

.admin-wrapper{
    display:flex;
    min-height:100vh;
}


/* logos */

.logo{
    text-align:center;
    padding:20px;
}

.logo img{
    max-width:180px;
    height:auto;
}




/* =========================
SIDEBAR
========================= */

.sidebar{
    width:280px;
    background:var(--dark);
    color:#fff;
    padding:7px;
}

.logo{
    margin-bottom:10px;
}

.menu{
    list-style:none;
    padding:0;
    margin:0;
}

.menu li{
    width:100%;
    margin-bottom:10px;
    list-style:none;
}

.menu li a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#cbd5e1;
    text-decoration:none;
    padding:14px 18px;
    border-radius:12px;
    transition:.3s;
    white-space:nowrap;
}

.menu li a:hover{
   
    color:#fff;
}

.menu li.active > a{
    background:var(--primary);
    color:#fff;
}

.menu li a i:first-child{
    width:22px;
    min-width:22px;
    text-align:center;
}

.menu li a .fa-chevron-down{
    margin-left:auto;
    font-size:12px;
    transition:.3s;
}

.menu li.open > a .fa-chevron-down{
    transform:rotate(180deg);
}

/* =========================
SUBMENU
========================= */

.submenu{
    display:none;
    background:rgba(255,255,255,.03);
    list-style:disc;
    padding-left:79px;
}

.submenu li{
    list-style:disc;
    display:list-item;
    margin-bottom:0;
}

.submenu li a{
    display:inline-block;
    padding:8px 0;
    font-size:12px;
    font-weight:400;
    color:#cbd5e1;
}

.menu li.open > .submenu{
    display:block;
}

/* =========================
MAIN CONTENT
========================= */

.main-content{
    flex:1;
    padding: 6px;
   
}

/* =========================
TOPBAR
========================= */
/* 
.topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:30px;
}

.topbar-left{
    display:flex;
    align-items:center;
}

.search-box{
    flex:1;
    max-width:600px;
}

.search-box input{
    width:100%;
    height:50px;
    border:none;
    outline:none;
    background:#fff;
    border-radius:14px;
    padding:0 18px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.admin-profile{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:8px 14px;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.admin-profile img{
    width:42px;
    height:42px;
    border-radius:50%;
}

.admin-profile strong{
    display:block;
    font-size:14px;
    line-height:1.2;
}

.admin-profile small{
    color:#64748b;
    font-size:12px;
} */


.topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:30px;
}

.topbar-left{
    display:flex;
    align-items:center;
}

.search-box{
    flex:1;
    max-width:600px;
}

.search-box input{
    width:100%;
    height:50px;
    border:none;
    outline:none;
    background:#fff;
    border-radius:14px;
    padding:0 18px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}



.search-box{
    flex:1;
    max-width:600px;
    position:relative;
}

.search-box input{
    width:100%;
    height:50px;
    border:none;
    outline:none;
    background:#fff;
    border-radius:14px;
    padding:0 60px 0 18px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.search-btn{
    position:absolute;
    right:6px;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#6133BD;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.search-btn:hover{
    background:#9255CE;
}




.topbar-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.topbar-icon{
    width:46px;
    height:46px;
    border-radius:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    cursor:pointer;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.topbar-icon i{
    color:#6133BD;
    font-size:18px;
}

.topbar-badge{
    position:absolute;
    top:-5px;
    right:-5px;
    background:#ef4444;
    color:#fff;
    min-width:18px;
    height:18px;
    border-radius:50%;
    font-size:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.topbar-language{
    display:flex;
    align-items:center;
    gap:8px;
    background:#fff;
    padding:0 14px;
    height:46px;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.topbar-language i{
    color:#6133BD;
}

.topbar-language select{
    border:none;
    outline:none;
    background:none;
    font-size:14px;
}

.admin-profile{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:8px 14px;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    cursor:pointer;
    position:relative;
}

.admin-profile img{
    width:42px;
    height:42px;
    border-radius:50%;
}

.admin-profile strong{
    display:block;
    font-size:14px;
}

.admin-profile small{
    color:#64748b;
    font-size:12px;
}

.profile-dropdown-menu{
    position:absolute;
    top:100%;
    right:0;
    width:220px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 10px 35px rgba(0,0,0,.10);
    padding:10px 0;
    display:none;
    z-index:999;
    margin-top:10px;
}

.profile-dropdown-menu.active{
    display:block;
}

.profile-dropdown-menu a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    text-decoration:none;
    color:#334155;
}

.profile-dropdown-menu a:hover{
    background:#f8fafc;
}

.dropdown-divider{
    height:1px;
    background:#e5e7eb;
    margin:8px 0;
}

.logout-link{
    color:#ef4444 !important;
}

/* TABLET */

@media(max-width:992px){

    .search-box{
        max-width:300px;
    }

}

/* =========================================
MOBILE TOPBAR SINGLE ROW
========================================= */

@media (max-width:768px){

    .topbar{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:10px;
        flex-wrap:nowrap;
        margin-bottom:20px;
    }

    /* Toggle */

    .menu-toggle{
        width:42px;
        height:42px;
        min-width:42px;
        border-radius:12px;
    }

    /* Search */

    .search-box{
        flex:1;
        min-width:0;
        max-width:none;
    }

    .search-box input{
        width:100%;
        height:42px;
        border-radius:12px;
        padding:0 14px;
        font-size:13px;
    }

    /* Hide Extra Icons */

    .topbar-language,
    .topbar-actions .topbar-icon:nth-child(2),
    .topbar-actions .topbar-icon:nth-child(3){
        display:none;
    }

    /* Actions */

    .topbar-actions{
        display:flex;
        align-items:center;
        gap:8px;
        flex-shrink:0;
    }

    .topbar-icon{
        width:42px;
        height:42px;
        border-radius:12px;
    }

    /* Profile */

    .admin-profile{
        padding:2px;
        background:#fff;
        flex-shrink:0;
    }

    .admin-profile div,
    .admin-profile .fa-chevron-down{
        display:none;
    }

    .admin-profile img{
        width:38px;
        height:38px;
    }

    .profile-dropdown-menu{
        right:0;
        width:220px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .topbar-icon{
        width:40px;
        height:40px;
    }

    .admin-profile{
        padding:6px;
    }

    .admin-profile img{
        width:36px;
        height:36px;
    }

}


/* =========================
MENU TOGGLE
========================= */

.menu-toggle{
    display:none;
    width:45px;
    height:45px;
    border:none;
    border-radius:12px;
    background:var(--primary);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    flex-shrink:0;
}

/* =========================
CARDS
========================= */

.stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.stat-card i{
    font-size:24px;
    color:var(--primary);
}

.stat-card h3{
    margin:15px 0 5px;
    font-weight:700;
}

.card-box{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.payment-list{
    list-style:none;
    padding:0;
}

.payment-list li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

/* =========================
TABLET
========================= */

@media (max-width:991px){

    .sidebar{
        width:80px;
        padding:20px 10px;
    }

    .logo h4{
        display:none;
    }

    .menu li a{
        justify-content:center;
        padding:14px;
    }

    .menu li a span,
    .menu li a .fa-chevron-down{
        display:none;
    }

    .main-content{
        padding:20px;
    }

    .search-box input{
        width:220px;
    }

    .stat-card{
        padding:20px;
    }
}

/* =========================
MOBILE
========================= */

@media (max-width:768px){

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .admin-wrapper{
        display:block;
    }

    .sidebar{
        position:fixed;
        top:0;
        left:-280px;
        width:280px;
        height:100vh;
        background:#111827;
        z-index:9999;
        overflow-y:auto;
        transition:.3s ease;
        padding:20px;
    }

    .sidebar.show{
        left:0;
    }

    .logo h4{
        display:block;
    }

    .menu li a{
        justify-content:flex-start;
    }

    .menu li a span,
    .menu li a .fa-chevron-down{
        display:block;
    }

    .main-content{
        width:100%;
        padding:4px;
    }

    .topbar{
        gap:10px;
        margin-bottom:20px;
    }

    .search-box{
        flex:1;
    }

    .admin-profile{
        display:flex;
        gap:8px;
        flex-shrink:0;
    }

    .admin-profile div{
        display:none;
    }

    .admin-profile img{
        width:38px;
        height:38px;
    }

    .card-box{
        overflow-x:auto;
    }

    .table{
        min-width:600px;
    }

    .stat-card{
        text-align:center;
    }

    .stat-card i{
        display:block;
        margin-bottom:10px;
    }
}

/* =========================
SMALL MOBILE
========================= */

@media (max-width:576px){

    .main-content{
        padding:12px;
    }

    .search-box input{
        height:45px;
    }

    .stat-card{
        padding:18px;
        border-radius:16px;
    }

    .card-box{
        padding:18px;
        border-radius:16px;
    }

    .stat-card h3{
        font-size:24px;
    }

    .stat-card p{
        font-size:14px;
    }
}



/* dashboard page  */

.aq-dash-wrapper{
    padding:5px;
}

/* Header */

.aq-dash-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-dash-title{
    font-size:30px;
    font-weight:700;
    margin:0;
    color:#111827;
}

.aq-dash-subtitle{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-dash-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.aq-dash-btn:hover{
    background:#4f28a5;
}

/* Stats Cards */

.aq-dash-stat-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.aq-dash-stat-card:hover{
    transform:translateY(-5px);
}

.aq-dash-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f3f0ff;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    font-size:24px;
}

.aq-dash-stat-card h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:6px;
    color:#111827;
}

.aq-dash-stat-card span{
    color:#6b7280;
    font-size:14px;
}

.aq-dash-stat-card.success .aq-dash-icon{
    background:#ecfdf5;
    color:#16a34a;
}

.aq-dash-stat-card.warning .aq-dash-icon{
    background:#fffbeb;
    color:#d97706;
}

.aq-dash-stat-card.info .aq-dash-icon{
    background:#eff6ff;
    color:#0287db;
}

/* Common Cards */

.aq-dash-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    margin-top:25px;
}

.aq-dash-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-dash-card-header h4{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#111827;
}

/* Quick Actions */

.aq-action-card{
    background:#f8fafc;
    border-radius:16px;
    padding:25px;
    text-align:center;
    cursor:pointer;
    transition:.3s;
    border:1px solid transparent;
}

.aq-action-card:hover{
    transform:translateY(-4px);
    border-color:#6133BD;
}

.aq-action-card i{
    font-size:30px;
    color:#6133BD;
    margin-bottom:12px;
}

.aq-action-card h5{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#111827;
}

/* Charts */

.aq-chart-lg{
    height:420px;
}

.aq-chart-md{
    height:420px;
}

/* Analytics Cards */

.aq-mini-analytics-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    height:100%;
    transition:.3s;
}

.aq-mini-analytics-card:hover{
    transform:translateY(-5px);
}

.aq-mini-analytics-card h6{
    color:#6b7280;
    margin-bottom:10px;
    font-size:14px;
}

.aq-mini-analytics-card h3{
    font-size:32px;
    font-weight:700;
    color:#6133BD;
    margin-bottom:8px;
}

.aq-mini-analytics-card span{
    color:#16a34a;
    font-size:14px;
    font-weight:500;
}

/* Tables */

.aq-dashboard-table{
    width:100%;
}

.aq-dashboard-table thead{
    background:#f8fafc;
}

.aq-dashboard-table th{
    padding:15px;
    font-weight:600;
    color:#374151;
}

.aq-dashboard-table td{
    padding:15px;
    vertical-align:middle;
}

.aq-dashboard-table tbody tr{
    border-bottom:1px solid #f1f5f9;
}

/* Status */

.aq-status{
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-status.success{
    background:#dcfce7;
    color:#166534;
}

.aq-status.pending{
    background:#fef3c7;
    color:#92400e;
}

.aq-status.failed{
    background:#fee2e2;
    color:#991b1b;
}

/* Activity */

.aq-activity-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 0;
    border-bottom:1px solid #f1f5f9;
}

.aq-activity-item:last-child{
    border-bottom:none;
}

.aq-activity-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#f3f0ff;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
}

.aq-activity-content h6{
    margin:0;
    font-size:15px;
    font-weight:600;
}

.aq-activity-content span{
    color:#6b7280;
    font-size:13px;
}

/* Responsive */

@media(max-width:991px){

    .aq-dash-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-dash-btn{
        width:100%;
    }

}

@media(max-width:768px){

    .aq-dash-title{
        font-size:24px;
    }

    .aq-dash-card{
        padding:18px;
    }

    .aq-dash-stat-card{
        padding:20px;
    }

    .aq-dash-stat-card h3{
        font-size:26px;
    }

    .aq-chart-lg,
    .aq-chart-md{
        height:300px;
    }

}

.admin-wrapper{
    display:flex;
    height:100vh;
    overflow:hidden;
}

/* Sidebar */

.sidebar{
    width:280px;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    overflow-y:auto;
    overflow-x:hidden;
    z-index:1000;
}

/* Scrollbar */

.sidebar::-webkit-scrollbar{
    width:5px;
}

.sidebar::-webkit-scrollbar-thumb{
    background:#6133BD;
    border-radius:20px;
}

/* Menu Scroll */

.menu{
    flex:1;
    padding-bottom:50px;
}

/* Main Content */

.main-content{
    margin-left:280px;
    width:calc(100% - 280px);
    min-height:100vh;
    overflow-y:auto;
    padding:20px;
}

/* Main Content Scrollbar */

.main-content::-webkit-scrollbar{
    width:8px;
}

.main-content::-webkit-scrollbar-thumb{
    background:#6133BD;
    border-radius:20px;
}

/* Topbar Sticky */

.topbar{
   
    background:#f4f6fb;
    padding-bottom:15px;
}

/* Mobile */

@media(max-width:991px){

    .sidebar{
        left:-280px;
        transition:.3s ease;
    }

    .sidebar.show{
        left:0;
    }

    .main-content{
        margin-left:0;
        width:100%;
        padding:15px;
    }

}

/* Extra Large Screens */

@media(min-width:1400px){

    .main-content{
        padding:25px;
    }

}





/* add category page style */

.ec-form-wrapper{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 3px 15px rgba(0,0,0,.05);
}

.ec-form .row{
    row-gap:20px;
}

.ec-label{
    display:block;
    font-size:14px;
    font-weight:600;
    margin-bottom:8px;
}

.ec-input,
.ec-select,
.ec-textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:12px 15px;
    outline:none;
}

.ec-input:focus,
.ec-select:focus,
.ec-textarea:focus{
    border-color:#6133BD;
}

.ec-image-box{
    margin-top:10px;
}

.ec-current-image{
    width:220px;
    border-radius:15px;
    overflow:hidden;
    border:2px solid #eee;
}

.ec-current-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

.ec-btn-group{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.ec-save-btn{
    background:#6133BD;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:10px;
    font-weight:600;
}

.ec-cancel-btn{
    border:none;
    padding:12px 25px;
    border-radius:10px;
    background:#f3f4f6;
    color:#333;
    font-weight:600;
}

@media(max-width:768px){

    .ec-btn-group{
        flex-direction:column;
    }

    .ec-current-image{
        width:100%;
    }

}


/* edit category page  */

.edit-category-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.edit-category-header h2{
    font-size:24px;
    font-weight:700;
    margin-bottom:5px;
}

.edit-category-header p{
    color:#888;
    margin:0;
}

.edit-category-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 3px 15px rgba(0,0,0,.05);
}

.edit-category-form .row{
    row-gap:20px;
}

.edit-category-form label{
    display:block;
    font-size:14px;
    font-weight:600;
    margin-bottom:8px;
}

.edit-category-form input,
.edit-category-form select,
.edit-category-form textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:12px 15px;
    outline:none;
}

.edit-category-form input:focus,
.edit-category-form select:focus,
.edit-category-form textarea:focus{
    border-color:#6133BD;
}

.edit-category-back-btn,
.edit-category-save-btn{
    background:#6133BD;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.edit-category-image-box{
    margin-top:10px;
}

.edit-category-image-box label{
    margin-bottom:12px;
    display:block;
}

.edit-category-current-image{
    width:220px;
    border-radius:15px;
    overflow:hidden;
    border:2px solid #eee;
}

.edit-category-current-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

.edit-category-action-btns{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.edit-category-cancel-btn{
    border:none;
    padding:13px 25px;
    border-radius:12px;
    background:#f3f4f6;
    color:#333;
    font-weight:600;
}

@media(max-width:768px){

    .edit-category-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .edit-category-action-btns{
        flex-direction:column;
    }

    .edit-category-current-image{
        width:100%;
    }

}


/* delete modal  */

/* ==========================
   DELETE MODAL
========================== */

.delete-modal{
    border:none;
    border-radius:20px;
    overflow:hidden;
}

.delete-modal .modal-body{
    padding:40px 30px;
}

.delete-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#fff1f1;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.delete-icon i{
    font-size:38px;
    color:#dc3545;
}

.delete-modal h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.delete-modal p{
    color:#777;
    margin-bottom:25px;
    line-height:1.7;
}

.delete-btn-group{
    display:flex;
    justify-content:center;
    gap:12px;
}

.btn-delete-confirm{
    border:none;
    background:#dc3545;
    color:#fff;
    padding:12px 25px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn-delete-confirm:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(220,53,69,.30);
}

@media(max-width:576px){

    .delete-btn-group{
        flex-direction:column;
    }

}


/* all questions page  */


.aq-questions-wrapper{
    padding:5px;
}

.aq-questions-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
   
    flex-wrap:wrap;
}

.aq-questions-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-questions-subtitle{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-questions-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
}

.aq-questions-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
}

.aq-questions-table th{
    background:#f7f8fc;
    font-size:14px;
    white-space:nowrap;
}

.aq-questions-table td{
    vertical-align:middle;
}

.aq-difficulty,
.aq-status{
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-difficulty.easy{
    background:#dcfce7;
    color:#15803d;
}

.aq-difficulty.medium{
    background:#fef3c7;
    color:#b45309;
}

.aq-difficulty.hard{
    background:#fee2e2;
    color:#dc2626;
}

.aq-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-action-btns{
    display:flex;
    gap:8px;
}

.aq-action-btns button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-btn-view{
    background:#dbeafe;
}

.aq-btn-edit{
    background:#fef3c7;
}

.aq-btn-delete{
    background:#fee2e2;
}

/* =========================
   MODAL
========================= */

.aq-question-modal{
    border:none;
    border-radius:20px;
}

.aq-question-header{
    background:#6133BD;
    color:#fff;
}

.aq-question-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-input{
    min-height:50px;
    border-radius:12px;
}

.aq-save-question-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 25px;
    border-radius:10px;
    font-weight:600;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .aq-questions-wrapper{
        padding:15px;
    }

    .aq-questions-title{
        font-size:22px;
    }

    .aq-questions-add-btn{
        width:100%;
        justify-content:center;
    }

    .aq-action-btns{
        flex-wrap:wrap;
    }

    .modal-dialog{
        margin:10px;
    }
}


/* import question page  */


.aq-import-wrapper{
    padding:5px;
}

.aq-import-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;

    flex-wrap:wrap;
}

.aq-import-title{
    font-size:28px;
    font-weight:700;
    margin:0;
}

.aq-import-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-import-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-import-card,
.aq-import-history-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    margin-bottom:20px;
}

.aq-import-upload-box{
    text-align:center;
    border:2px dashed #d7d7d7;
    border-radius:18px;
    padding:50px 20px;
}

.aq-import-icon{
    font-size:60px;
    color:#6133BD;
    margin-bottom:15px;
}

.aq-import-file{
    margin-top:20px;
}

.aq-import-history-head{
    margin-bottom:15px;
}

.aq-import-table th{
    background:#f7f8fc;
}

.aq-import-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-import-status.success{
    background:#dcfce7;
    color:#15803d;
}

.aq-import-status.pending{
    background:#fef3c7;
    color:#b45309;
}

.aq-import-view-btn{
    border:none;
    background:#dbeafe;
    padding:8px 15px;
    border-radius:10px;
    font-weight:600;
}

/* MODAL */

.aq-import-modal{
    border:none;
    border-radius:20px;
}

.aq-import-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-import-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-import-input{
    min-height:50px;
    border-radius:12px;
}

.aq-import-note{
    background:#f8f9ff;
    padding:15px;
    border-radius:14px;
    border-left:4px solid #6133BD;
}

.aq-import-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 25px;
    border-radius:10px;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:768px){

    .aq-import-wrapper{
        padding:15px;
    }

    .aq-import-title{
        font-size:22px;
    }

    .aq-import-btn{
        width:100%;
    }

    .aq-import-upload-box{
        padding:30px 15px;
    }
}


/* mcq question page  */

.aq-mcq-wrapper{
    padding:0px;
}

.aq-mcq-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
   
}

.aq-mcq-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-mcq-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-mcq-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-mcq-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-mcq-filter-bar{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:15px;
    margin-bottom:20px;
}

.aq-mcq-table th{
    background:#f7f8fc;
    white-space:nowrap;
}

.aq-mcq-level,
.aq-mcq-status{
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
}

.aq-mcq-level.easy{
    background:#dcfce7;
    color:#15803d;
}

.aq-mcq-level.medium{
    background:#fef3c7;
    color:#b45309;
}

.aq-mcq-level.hard{
    background:#fee2e2;
    color:#dc2626;
}

.aq-mcq-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-mcq-actions{
    display:flex;
    gap:8px;
}

.aq-mcq-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-mcq-view{
    background:#dbeafe;
}

.aq-mcq-edit{
    background:#fef3c7;
}

.aq-mcq-delete{
    background:#fee2e2;
}

.aq-mcq-modal{
    border:none;
    border-radius:20px;
}

.aq-mcq-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-mcq-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-mcq-input{
    min-height:50px;
    border-radius:12px;
}

.aq-mcq-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 25px;
    border-radius:10px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .aq-mcq-wrapper{
        padding:15px;
    }

    .aq-mcq-title{
        font-size:22px;
    }

    .aq-mcq-filter-bar{
        grid-template-columns:1fr;
    }

    .aq-mcq-add-btn{
        width:100%;
    }

}


/* image questions page  */


.aq-image-wrapper{
    padding:5px;
}

.aq-image-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
   
}

.aq-image-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-image-subtitle{
    color:#6b7280;
    margin-top:5px;
}

.aq-image-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-image-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-image-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-image-thumb{
    width:90px;
    height:60px;
    object-fit:cover;
    border-radius:10px;
}

.aq-image-status{
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
}

.aq-image-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-image-actions{
    display:flex;
    gap:8px;
}

.aq-image-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-image-view{
    background:#dbeafe;
}

.aq-image-edit{
    background:#fef3c7;
}

.aq-image-delete{
    background:#fee2e2;
}

.aq-image-modal{
    border:none;
    border-radius:20px;
}

.aq-image-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-image-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-image-input{
    min-height:50px;
    border-radius:12px;
}

.aq-image-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 25px;
    border-radius:10px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .aq-image-wrapper{
        padding:15px;
    }

    .aq-image-title{
        font-size:22px;
    }

    .aq-image-add-btn{
        width:100%;
    }

}


/* add category page  */


.aq-category-wrapper{
    padding:5px;
}

.aq-category-header{
    margin-bottom:25px;
}

.aq-category-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-category-subtitle{
    color:#6b7280;
}

.aq-category-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
}

.aq-category-input{
    min-height:52px;
    border-radius:12px;
}

textarea.aq-category-input{
    min-height:auto;
}

.aq-category-btn-area{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:10px;
}

.aq-category-cancel-btn{
    border:none;
    background:#e5e7eb;
    color:#111827;
    padding:12px 24px;
    border-radius:12px;
    font-weight:600;
}

.aq-category-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:12px;
    font-weight:600;
}

.aq-category-save-btn:hover{
    background:#4f28a0;
}

/* ==========================
   Responsive
========================== */

@media(max-width:768px){

    .aq-category-wrapper{
        padding:15px;
    }

    .aq-category-card{
        padding:20px;
    }

    .aq-category-title{
        font-size:22px;
    }

    .aq-category-btn-area{
        flex-direction:column;
    }

    .aq-category-cancel-btn,
    .aq-category-save-btn{
        width:100%;
    }

}


/* difficulty level page  */


.aq-difficulty-wrapper{
    padding:5px;
}

.aq-difficulty-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
   
}

.aq-difficulty-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-difficulty-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-difficulty-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-difficulty-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-difficulty-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-difficulty-color{
    width:22px;
    height:22px;
    border-radius:50%;
    display:inline-block;
}

.aq-difficulty-color.easy{
    background:#22c55e;
}

.aq-difficulty-color.medium{
    background:#f59e0b;
}

.aq-difficulty-color.hard{
    background:#ef4444;
}

.aq-difficulty-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-difficulty-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-difficulty-actions{
    display:flex;
    gap:8px;
}

.aq-difficulty-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-difficulty-view{
    background:#dbeafe;
}

.aq-difficulty-edit{
    background:#fef3c7;
}

.aq-difficulty-delete{
    background:#fee2e2;
}

.aq-difficulty-modal{
    border:none;
    border-radius:20px;
}

.aq-difficulty-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-difficulty-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-difficulty-input{
    min-height:50px;
    border-radius:12px;
}

.aq-difficulty-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .aq-difficulty-wrapper{
        padding:15px;
    }

    .aq-difficulty-title{
        font-size:22px;
    }

    .aq-difficulty-add-btn{
        width:100%;
    }

}

/* explanation page  */

.aq-explanation-wrapper{
    padding:5px;
}

.aq-explanation-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-explanation-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-explanation-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-explanation-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-explanation-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
   
}

.aq-explanation-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-explanation-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-explanation-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-explanation-actions{
    display:flex;
    gap:8px;
}

.aq-explanation-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-explanation-view{
    background:#dbeafe;
}

.aq-explanation-edit{
    background:#fef3c7;
}

.aq-explanation-delete{
    background:#fee2e2;
}

.aq-explanation-modal{
    border:none;
    border-radius:20px;
}

.aq-explanation-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-explanation-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-explanation-input{
    min-height:50px;
    border-radius:12px;
}

textarea.aq-explanation-input{
    min-height:auto;
}

.aq-explanation-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .aq-explanation-wrapper{
        padding:5px;
    }

    .aq-explanation-title{
        font-size:22px;
    }

    .aq-explanation-add-btn{
        width:100%;
    }

}


/* all tests page */


.aq-test-wrapper{
    padding:5px;
}

.aq-test-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-test-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-test-subtitle{
    color:#6b7280;
    margin-top:5px;
}

.aq-test-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-test-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
   
}

.aq-test-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-test-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-test-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-test-status.inactive{
    background:#fef3c7;
    color:#b45309;
}

.aq-test-actions{
    display:flex;
    gap:8px;
}

.aq-test-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-test-view{
    background:#dbeafe;
}

.aq-test-edit{
    background:#fef3c7;
}

.aq-test-delete{
    background:#fee2e2;
}

.aq-test-modal{
    border:none;
    border-radius:20px;
}

.aq-test-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-test-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-test-input{
    min-height:50px;
    border-radius:12px;
}

.aq-test-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .aq-test-wrapper{
        padding:5px;
    }

    .aq-test-title{
        font-size:22px;
    }

    .aq-test-add-btn{
        width:100%;
    }

}


/* create test page */


.aq-create-test-wrapper{
    padding:5px;
}

.aq-create-test-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-create-test-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-create-test-subtitle{
    color:#6b7280;
    margin-top:5px;
}

.aq-create-test-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-create-test-input{
    min-height:50px;
    border-radius:12px;
}

textarea.aq-create-test-input{
    min-height:auto;
}

.aq-create-test-btn-area{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:10px;
}

.aq-create-test-cancel-btn{
    border:none;
    background:#e5e7eb;
    color:#111827;
    padding:12px 24px;
    border-radius:12px;
    font-weight:600;
}

.aq-create-test-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:12px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .aq-create-test-wrapper{
        padding:5px;
    }

    .aq-create-test-title{
        font-size:22px;
    }

    .aq-create-test-card{
        padding:18px;
    }

    .aq-create-test-btn-area{
        flex-direction:column;
    }

    .aq-create-test-cancel-btn,
    .aq-create-test-save-btn{
        width:100%;
    }

}

/* mock test page */


.aq-mock-wrapper{
    padding:5px;
}

.aq-mock-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-mock-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-mock-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-mock-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-mock-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-mock-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-mock-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-mock-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-mock-actions{
    display:flex;
    gap:8px;
}

.aq-mock-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-mock-view{
    background:#dbeafe;
}

.aq-mock-edit{
    background:#fef3c7;
}

.aq-mock-delete{
    background:#fee2e2;
}

.aq-mock-modal{
    border:none;
    border-radius:20px;
}

.aq-mock-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-mock-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-mock-input{
    min-height:50px;
    border-radius:12px;
}

.aq-mock-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .aq-mock-wrapper{
        padding:5px;
    }

    .aq-mock-title{
        font-size:22px;
    }

    .aq-mock-add-btn{
        width:100%;
    }

}

/* practise set page */


.aq-practice-wrapper{
    padding:5px;
}

.aq-practice-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-practice-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-practice-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-practice-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-practice-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-practice-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-practice-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-practice-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-practice-actions{
    display:flex;
    gap:8px;
}

.aq-practice-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-practice-view{
    background:#dbeafe;
}

.aq-practice-edit{
    background:#fef3c7;
}

.aq-practice-delete{
    background:#fee2e2;
}

.aq-practice-modal{
    border:none;
    border-radius:20px;
}

.aq-practice-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-practice-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-practice-input{
    min-height:50px;
    border-radius:12px;
}

.aq-practice-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .aq-practice-wrapper{
        padding:5px;
    }

    .aq-practice-title{
        font-size:22px;
    }

    .aq-practice-add-btn{
        width:100%;
    }

}

/* previous years questions page */


.aq-pyq-wrapper{
    padding:5px;
}

.aq-pyq-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-pyq-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-pyq-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-pyq-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-pyq-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-pyq-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-pyq-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-pyq-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-pyq-actions{
    display:flex;
    gap:8px;
}

.aq-pyq-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-pyq-view{
    background:#dbeafe;
}

.aq-pyq-edit{
    background:#fef3c7;
}

.aq-pyq-delete{
    background:#fee2e2;
}

.aq-pyq-modal{
    border:none;
    border-radius:20px;
}

.aq-pyq-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-pyq-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-pyq-input{
    min-height:50px;
    border-radius:12px;
}

.aq-pyq-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .aq-pyq-wrapper{
        padding:5px;
    }

    .aq-pyq-title{
        font-size:22px;
    }

    .aq-pyq-add-btn{
        width:100%;
    }

}

/* live quiz page */


.aq-livequiz-wrapper{
    padding:5px;
}

.aq-livequiz-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-livequiz-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-livequiz-subtitle{
    color:#6b7280;
    margin-top:5px;
}

.aq-livequiz-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-livequiz-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-livequiz-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-livequiz-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-livequiz-status.live{
    background:#dcfce7;
    color:#15803d;
}

.aq-livequiz-status.upcoming{
    background:#dbeafe;
    color:#1d4ed8;
}

.aq-livequiz-status.completed{
    background:#f3f4f6;
    color:#374151;
}

.aq-livequiz-actions{
    display:flex;
    gap:8px;
}

.aq-livequiz-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-livequiz-view{
    background:#dbeafe;
}

.aq-livequiz-edit{
    background:#fef3c7;
}

.aq-livequiz-delete{
    background:#fee2e2;
}

.aq-livequiz-modal{
    border:none;
    border-radius:20px;
}

.aq-livequiz-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-livequiz-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-livequiz-input{
    min-height:50px;
    border-radius:12px;
}

.aq-livequiz-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

@media(max-width:768px){

    .aq-livequiz-title{
        font-size:22px;
    }

    .aq-livequiz-add-btn{
        width:100%;
    }

}

/* set timer page */


.aq-timer-wrapper{
    padding:5px;
}

.aq-timer-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-timer-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-timer-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-timer-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-timer-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-timer-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-timer-status,
.aq-timer-badge{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-timer-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-timer-badge.yes{
    background:#dbeafe;
    color:#1d4ed8;
}

.aq-timer-badge.no{
    background:#fee2e2;
    color:#dc2626;
}

.aq-timer-actions{
    display:flex;
    gap:8px;
}

.aq-timer-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-timer-view{
    background:#dbeafe;
}

.aq-timer-edit{
    background:#fef3c7;
}

.aq-timer-delete{
    background:#fee2e2;
}

.aq-timer-modal{
    border:none;
    border-radius:20px;
}

.aq-timer-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-timer-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-timer-input{
    min-height:50px;
    border-radius:12px;
}

.aq-timer-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

@media(max-width:768px){

    .aq-timer-title{
        font-size:22px;
    }

    .aq-timer-add-btn{
        width:100%;
    }

}

/* negative marking page */


.aq-negative-wrapper{
    padding:5px;
}

.aq-negative-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-negative-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-negative-subtitle{
    color:#6b7280;
    margin-top:5px;
}

.aq-negative-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-negative-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-negative-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-negative-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-negative-status.active{
    background:#dcfce7;
    color:#15803d;
}

.aq-negative-actions{
    display:flex;
    gap:8px;
}

.aq-negative-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-negative-view{
    background:#dbeafe;
}

.aq-negative-edit{
    background:#fef3c7;
}

.aq-negative-delete{
    background:#fee2e2;
}

.aq-negative-modal{
    border:none;
    border-radius:20px;
}

.aq-negative-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-negative-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-negative-input{
    min-height:50px;
    border-radius:12px;
}

.aq-negative-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

@media(max-width:768px){

    .aq-negative-title{
        font-size:22px;
    }

    .aq-negative-add-btn{
        width:100%;
    }

}

/* shuffle questions page  */


.aq-shuffle-wrapper{
    padding:5px;
}

.aq-shuffle-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.aq-shuffle-title{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-shuffle-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-shuffle-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-shuffle-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-shuffle-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-shuffle-badge,
.aq-shuffle-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-shuffle-badge.enabled{
    background:#dcfce7;
    color:#15803d;
}

.aq-shuffle-badge.disabled{
    background:#fee2e2;
    color:#dc2626;
}

.aq-shuffle-status.active{
    background:#dbeafe;
    color:#1d4ed8;
}

.aq-shuffle-actions{
    display:flex;
    gap:8px;
}

.aq-shuffle-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}

.aq-shuffle-view{
    background:#dbeafe;
}

.aq-shuffle-edit{
    background:#fef3c7;
}

.aq-shuffle-delete{
    background:#fee2e2;
}

.aq-shuffle-modal{
    border:none;
    border-radius:20px;
}

.aq-shuffle-modal-header{
    background:#6133BD;
    color:#fff;
}

.aq-shuffle-modal-header .btn-close{
    filter:brightness(0) invert(1);
}

.aq-shuffle-input{
    min-height:50px;
    border-radius:12px;
}

.aq-shuffle-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

@media(max-width:768px){

    .aq-shuffle-title{
        font-size:22px;
    }

    .aq-shuffle-add-btn{
        width:100%;
    }

}

/* student result page  */

.aq-sr-wrapper{
    padding:5px;
}

.aq-sr-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.aq-sr-title{
    font-size:30px;
    font-weight:700;
}

.aq-sr-subtitle{
    color:#6b7280;
}

.aq-sr-export-btn{
    background:#6133BD;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:12px;
}

.aq-sr-stat-card,
.aq-sr-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-sr-stat-card{
    text-align:center;
}

.aq-sr-stat-card h3{
    font-size:30px;
    color:#6133BD;
    font-weight:700;
}

.aq-sr-stat-card.success h3{
    color:#16a34a;
}

.aq-sr-stat-card.danger h3{
    color:#dc2626;
}

.aq-sr-stat-card.warning h3{
    color:#d97706;
}

.aq-sr-card{
    margin-top:25px;
}

.aq-sr-card-header{
    margin-bottom:20px;
}

.aq-sr-chart{
    height:350px;
}

.aq-sr-table th{
    font-weight:600;
}

.aq-result-badge{
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
}

.aq-result-badge.pass{
    background:#dcfce7;
    color:#166534;
}

.aq-result-badge.fail{
    background:#fee2e2;
    color:#991b1b;
}

/* test report page */

.aq-tr-wrapper{
    padding:5px;
}

.aq-tr-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.aq-tr-title{
    font-size:30px;
    font-weight:700;
}

.aq-tr-subtitle{
    color:#6b7280;
}

.aq-tr-export-btn{
    background:#6133BD;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:12px;
}

.aq-tr-stat-card,
.aq-tr-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-tr-stat-card{
    text-align:center;
}

.aq-tr-stat-card h3{
    font-size:30px;
    font-weight:700;
    color:#6133BD;
}

.aq-tr-stat-card.success h3{
    color:#16a34a;
}

.aq-tr-stat-card.warning h3{
    color:#d97706;
}

.aq-tr-stat-card.info h3{
    color:#0287db;
}

.aq-tr-card{
    margin-top:25px;
}

.aq-tr-card-header{
    margin-bottom:20px;
}

.aq-tr-chart{
    height:350px;
}

.aq-tr-table th{
    font-weight:600;
}

/* rankings reports page  */

.aq-rank-wrapper{
    padding:5px;
}

.aq-rank-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.aq-rank-title{
    font-size:30px;
    font-weight:700;
}

.aq-rank-subtitle{
    color:#6b7280;
}

.aq-rank-export-btn{
    background:#6133BD;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:12px;
}

.aq-rank-stat-card,
.aq-rank-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-rank-stat-card{
    text-align:center;
}

.aq-rank-stat-card h3{
    font-size:30px;
    font-weight:700;
    color:#6133BD;
}

.aq-rank-stat-card.success h3{
    color:#16a34a;
}

.aq-rank-stat-card.warning h3{
    color:#d97706;
}

.aq-rank-stat-card.info h3{
    color:#0287db;
}

.aq-rank-card{
    margin-top:25px;
}

.aq-rank-card-header{
    margin-bottom:20px;
}

.aq-rank-chart{
    height:350px;
}

.aq-rank-table th{
    font-weight:600;
}

/* overview page  */

.aq-pa-wrapper{
    padding:5px;
}

.aq-pa-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-pa-title{
    font-size:30px;
    font-weight:700;
    margin:0;
}

.aq-pa-subtitle{
    color:#6b7280;
    margin-top:5px;
}

.aq-pa-export-btn{
    background:#6133BD;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:12px;
}

.aq-pa-stat-card,
.aq-pa-chart-card,
.aq-pa-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-pa-stat-card{
    text-align:center;
    height:100%;
}

.aq-pa-stat-card h3{
    font-size:30px;
    font-weight:700;
    color:#6133BD;
}

.aq-pa-stat-card span{
    color:#6b7280;
}

.aq-pa-card-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.aq-pa-chart-card{
    margin-top:25px;
}

.aq-pa-chart-lg{
    height:420px;
}

.aq-pa-chart-sm{
    height:320px;
}

.aq-pa-table thead{
    background:#f8f9fc;
}

.aq-pa-weak-card{
    background:#f8f9fc;
    border-radius:16px;
    padding:20px;
    text-align:center;
}

.aq-pa-weak-card h5{
    margin-bottom:10px;
    font-weight:700;
}

.aq-pa-weak-card span{
    color:#6133BD;
    font-weight:600;
}


/* questions analysis page  */

.aq-qa-wrapper{
    padding:5px;
}

.aq-qa-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-qa-title{
    font-size:30px;
    font-weight:700;
    margin:0;
}

.aq-qa-subtitle{
    color:#6b7280;
}

.aq-qa-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
}

.aq-qa-stat-card,
.aq-qa-chart-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-qa-stat-card{
    text-align:center;
}

.aq-qa-stat-card h3{
    font-size:30px;
    font-weight:700;
    color:#6133BD;
}

.aq-qa-stat-card.success h3{
    color:#16a34a;
}

.aq-qa-stat-card.danger h3{
    color:#dc2626;
}

.aq-qa-stat-card.warning h3{
    color:#d97706;
}

.aq-qa-chart-card{
    margin-top:25px;
}

.aq-qa-card-header{
    margin-bottom:20px;
}

.aq-qa-card-header h4{
    margin:0;
    font-weight:700;
}

.aq-qa-chart-lg{
    height:420px;
}

.aq-qa-chart-sm{
    height:320px;
}

/* subject analysis page  */

.aq-sa-wrapper{
    padding:5px;
}

.aq-sa-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-sa-title{
    font-size:30px;
    font-weight:700;
    margin:0;
}

.aq-sa-subtitle{
    color:#6b7280;
}

.aq-sa-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
}

.aq-sa-stat-card,
.aq-sa-chart-card,
.aq-sa-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    margin-top: 23px;
}

.aq-sa-stat-card{
    text-align:center;
}

.aq-sa-stat-card h3{
    font-size:30px;
    font-weight:700;
    color:#6133BD;
}

.aq-sa-stat-card.success h3{
    color:#16a34a;
}

.aq-sa-stat-card.danger h3{
    color:#dc2626;
}

.aq-sa-stat-card.warning h3{
    color:#d97706;
}

.aq-sa-chart-card{
    margin-top:25px;
}

.aq-sa-card-header{
    margin-bottom:20px;
}

.aq-sa-card-header h4{
    margin:0;
    font-weight:700;
}

.aq-sa-chart-lg{
    height:420px;
}

.aq-sa-chart-sm{
    height:320px;
}

.aq-sa-table thead{
    background:#f8f9fc;
}

.aq-sa-table th{
    font-weight:600;
}

/* performance chart page  */

.aq-pc-wrapper{
    padding:5px;
}

.aq-pc-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-pc-title{
    font-size:30px;
    font-weight:700;
    margin:0;
}

.aq-pc-subtitle{
    color:#6b7280;
}

.aq-pc-export-btn{
    background:#6133BD;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:12px;
}

.aq-pc-stat-card,
.aq-pc-chart-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-pc-stat-card{
    text-align:center;
}

.aq-pc-stat-card h3{
    font-size:30px;
    color:#6133BD;
    font-weight:700;
}

.aq-pc-chart-card{
    margin-top:25px;
}

.aq-pc-card-header{
    margin-bottom:20px;
}

.aq-pc-chart-lg{
    height:420px;
}

.aq-pc-chart-sm{
    height:320px;
}


/* category rank page  */


.aq-category-rank-wrapper{
    padding:5px;
}

.aq-category-rank-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:20px;
}

.aq-category-rank-title{
    font-size:30px;
    font-weight:700;
    margin:0;
}

.aq-category-rank-subtitle{
    margin:4px 0 0;
    color:#6b7280;
}

.aq-category-rank-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 20px;
    border-radius:12px;
    font-weight:600;
}

.aq-category-rank-stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-category-rank-stat-card h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:8px;
}

.aq-category-rank-stat-card span{
    color:#6b7280;
}

.aq-category-rank-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-category-rank-filter{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.aq-category-rank-input{
    border-radius:12px;
}

.aq-category-rank-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-rank-badge{
    padding:8px 14px;
    border-radius:30px;
    font-weight:700;
}

.aq-rank-badge.gold{
    background:#fff8db;
    color:#c89b00;
}

.aq-rank-badge.silver{
    background:#eef2f7;
    color:#64748b;
}

.aq-rank-badge.bronze{
    background:#ffe8d8;
    color:#c56a28;
}

.aq-rank-status{
    background:#dcfce7;
    color:#15803d;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

@media(max-width:768px){

    .aq-category-rank-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-category-rank-filter{
        flex-direction:column;
    }

    .aq-category-rank-title{
        font-size:24px;
    }

}

/* weekly topper page  */


.aq-weekly-topper-wrapper{
    padding:5px;
}

.aq-weekly-topper-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:20px;
}

.aq-weekly-topper-title{
    font-size:30px;
    font-weight:700;
    margin:0;
}

.aq-weekly-topper-subtitle{
    margin:4px 0 0;
    color:#6b7280;
}

.aq-weekly-topper-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 20px;
    border-radius:12px;
    font-weight:600;
}

.aq-weekly-topper-stat-card{
    background:#fff;
    padding:24px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-weekly-topper-stat-card h3{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-weekly-topper-stat-card span{
    color:#6b7280;
}

.aq-weekly-champion-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-weekly-champion-avatar img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
}

.aq-weekly-champion-card h3{
    margin-top:15px;
    font-weight:700;
}

.aq-weekly-champion-card p{
    color:#6b7280;
}

.aq-weekly-score-badge{
    display:inline-block;
    margin-top:10px;
    padding:10px 20px;
    background:#6133BD;
    color:#fff;
    border-radius:30px;
    font-weight:600;
}

.aq-weekly-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-weekly-topper-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-weekly-rank{
    padding:6px 14px;
    border-radius:30px;
    font-weight:700;
}

.aq-weekly-rank.gold{
    background:#fff7d6;
    color:#c99900;
}

.aq-weekly-rank.silver{
    background:#eef2f7;
    color:#64748b;
}

.aq-weekly-rank.bronze{
    background:#ffe7d8;
    color:#c96b24;
}

@media(max-width:768px){

    .aq-weekly-topper-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-weekly-topper-title{
        font-size:24px;
    }

    .aq-weekly-topper-btn{
        width:100%;
    }

}

/* monthly topper page  */

.aq-monthly-topper-wrapper{
    padding:5px;
}

.aq-monthly-topper-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:20px;
}

.aq-monthly-topper-title{
    margin:0;
    font-size:30px;
    font-weight:700;
}

.aq-monthly-topper-subtitle{
    margin-top:5px;
    color:#6b7280;
}

.aq-monthly-topper-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 20px;
    border-radius:12px;
    font-weight:600;
}

.aq-monthly-stat-card{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-monthly-stat-card h3{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-monthly-stat-card span{
    color:#6b7280;
}

.aq-monthly-champion-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    text-align:center;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-monthly-champion-card img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
}

.aq-monthly-champion-card h3{
    margin-top:15px;
    font-weight:700;
}

.aq-monthly-score{
    display:inline-block;
    margin-top:12px;
    background:#6133BD;
    color:#fff;
    padding:10px 24px;
    border-radius:30px;
    font-weight:600;
}

.aq-monthly-podium-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    height:100%;
}

.aq-monthly-medal{
    font-size:45px;
    margin-bottom:10px;
}

.aq-monthly-podium-card h4{
    margin-bottom:8px;
    font-weight:700;
}

.aq-monthly-podium-card span{
    color:#6b7280;
}

.aq-monthly-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-monthly-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

@media(max-width:768px){

    .aq-monthly-topper-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-monthly-topper-btn{
        width:100%;
    }

    .aq-monthly-topper-title{
        font-size:24px;
    }

}

/* overall ranking page  */


.aq-overall-ranking-wrapper{
    padding:5px;
}

.aq-overall-ranking-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:20px;
}

.aq-overall-ranking-title{
    font-size:30px;
    font-weight:700;
    margin:0;
}

.aq-overall-ranking-subtitle{
    color:#6b7280;
    margin-top:4px;
}

.aq-overall-ranking-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 20px;
    border-radius:12px;
    font-weight:600;
}

.aq-overall-stat-card{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-overall-stat-card h3{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.aq-overall-stat-card span{
    color:#6b7280;
}

.aq-overall-podium-card{
    background:#fff;
    border-radius:24px;
    text-align:center;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    height:100%;
}

.aq-overall-podium-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:15px 0;
}

.aq-overall-medal{
    font-size:50px;
}

.aq-overall-podium-card h4{
    font-weight:700;
}

.aq-overall-podium-card span{
    color:#6b7280;
}

.aq-overall-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-overall-filter-bar{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.aq-overall-input{
    border-radius:12px;
}

.aq-overall-table th{
    background:#f8f9fc;
    white-space:nowrap;
}

.aq-rank-badge{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-rank-badge.gold{
    background:#fff7d6;
    color:#c99800;
}

.aq-rank-badge.silver{
    background:#eef2f7;
    color:#64748b;
}

.aq-rank-badge.bronze{
    background:#ffe8da;
    color:#c96b28;
}

.aq-rank-badge.normal{
    background:#dcfce7;
    color:#15803d;
}

@media(max-width:768px){

    .aq-overall-ranking-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-overall-filter-bar{
        flex-direction:column;
    }

    .aq-overall-ranking-btn{
        width:100%;
    }

    .aq-overall-ranking-title{
        font-size:24px;
    }

}

/* all plan page */

.aq-membership-wrapper{
    padding:5px;
}

.aq-membership-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.aq-membership-title{
    margin:0;
    font-size:32px;
    font-weight:700;
}

.aq-membership-subtitle{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-membership-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
}

.aq-membership-stat-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-membership-stat-card h3{
    margin:0;
    font-size:30px;
    font-weight:700;
}

.aq-membership-stat-card span{
    color:#6b7280;
}

.aq-membership-featured{
    margin:25px 0;
    padding:35px;
    border-radius:24px;
    background:linear-gradient(135deg,#6133BD,#9255CE);
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.aq-membership-badge{
    display:inline-block;
    background:#fff;
    color:#6133BD;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
}

.aq-membership-price-box h1{
    margin:0;
    font-size:52px;
    font-weight:800;
}

.aq-membership-plan-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    height:100%;
}

.aq-membership-premium{
    border:2px solid #6133BD;
}

.aq-membership-plan-card h4{
    font-weight:700;
}

.aq-membership-plan-price{
    font-size:42px;
    font-weight:800;
    color:#6133BD;
    margin:10px 0;
}

.aq-membership-validity{
    display:inline-block;
    background:#eef2ff;
    color:#6133BD;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.aq-membership-plan-card ul{
    padding-left:18px;
    margin-bottom:20px;
}

.aq-membership-plan-card ul li{
    margin-bottom:10px;
}

.aq-membership-btn{
    width:100%;
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px;
    border-radius:12px;
    font-weight:600;
}

.aq-membership-table-card{
    margin-top:25px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.aq-membership-table-card h4{
    margin-bottom:20px;
    font-weight:700;
}

@media(max-width:768px){

    .aq-membership-featured{
        text-align:center;
    }

    .aq-membership-price-box{
        width:100%;
    }

    .aq-membership-price-box h1{
        font-size:42px;
    }

    .aq-membership-title{
        font-size:24px;
    }

    .aq-membership-add-btn{
        width:100%;
    }

}

/* payment overview page */

.aq-payment-overview-wrapper{
    padding:5px;
}

.aq-payment-overview-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-payment-overview-title{
    font-size:30px;
    font-weight:700;
    margin:0;
    color:#111827;
}

.aq-payment-overview-subtitle{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-payment-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 20px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.aq-payment-export-btn:hover{
    background:#4f28a5;
}

.aq-payment-stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.aq-payment-stat-card:hover{
    transform:translateY(-5px);
}

.aq-payment-stat-card h3{
    margin:0;
    color:#6133BD;
    font-size:30px;
    font-weight:700;
}

.aq-payment-stat-card span{
    display:block;
    margin-top:8px;
    color:#6b7280;
}

.aq-payment-chart-card,
.aq-payment-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-payment-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    flex-wrap:wrap;
    gap:10px;
}

.aq-payment-card-header h4{
    margin:0;
    font-size:20px;
    font-weight:700;
}

.aq-payment-card-header span{
    color:#6b7280;
    font-size:14px;
}

.aq-payment-chart-wrapper{
    height:420px;
    position:relative;
}

.aq-payment-chart-small{
    height:320px;
    position:relative;
}

.aq-payment-view-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:8px 16px;
    border-radius:10px;
}

.aq-payment-table thead{
    background:#f8f9fc;
}

.aq-payment-table th{
    font-weight:600;
    white-space:nowrap;
}

.aq-payment-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-payment-status.success{
    background:#dcfce7;
    color:#166534;
}

.aq-payment-status.pending{
    background:#fef3c7;
    color:#92400e;
}

.aq-payment-status.failed{
    background:#fee2e2;
    color:#991b1b;
}

@media(max-width:768px){

    .aq-payment-export-btn{
        width:100%;
    }

    .aq-payment-chart-wrapper{
        height:300px;
    }

    .aq-payment-chart-small{
        height:250px;
    }

}

/* orders page  */

.aq-orders-wrapper{
    padding:5px;
}

.aq-orders-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-orders-title{
    font-size:30px;
    font-weight:700;
    margin:0;
    color:#111827;
}

.aq-orders-subtitle{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-orders-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.aq-orders-export-btn:hover{
    background:#4e29a1;
}

.aq-orders-stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    height:100%;
    transition:.3s;
}

.aq-orders-stat-card:hover{
    transform:translateY(-5px);
}

.aq-orders-stat-icon{
    width:60px;
    height:60px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(97,51,189,.1);
    color:#6133BD;
    font-size:22px;
    margin-bottom:15px;
}

.aq-orders-stat-icon.success{
    background:#dcfce7;
    color:#166534;
}

.aq-orders-stat-icon.warning{
    background:#fef3c7;
    color:#92400e;
}

.aq-orders-stat-icon.danger{
    background:#fee2e2;
    color:#991b1b;
}

.aq-orders-stat-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-orders-stat-card span{
    color:#6b7280;
}

.aq-orders-chart-card,
.aq-orders-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-orders-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.aq-orders-card-header h4{
    margin:0;
    font-weight:700;
}

.aq-orders-card-header span{
    color:#6b7280;
    font-size:14px;
}

.aq-orders-chart-wrapper{
    height:400px;
    position:relative;
}

.aq-orders-chart-small{
    height:300px;
    position:relative;
}

.aq-orders-view-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:8px 16px;
    border-radius:10px;
}

.aq-orders-table thead{
    background:#f8f9fc;
}

.aq-orders-table th{
    font-weight:600;
    white-space:nowrap;
}

.aq-orders-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-orders-status.success{
    background:#dcfce7;
    color:#166534;
}

.aq-orders-status.pending{
    background:#fef3c7;
    color:#92400e;
}

.aq-orders-status.cancelled{
    background:#fee2e2;
    color:#991b1b;
}

.aq-orders-action-btn{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
    background:#6133BD;
    color:#fff;
}

.aq-orders-modal{
    border-radius:20px;
}

@media(max-width:768px){

    .aq-orders-export-btn{
        width:100%;
    }

    .aq-orders-chart-wrapper{
        height:280px;
    }

    .aq-orders-chart-small{
        height:250px;
    }

}

/* transactions page  */

.aq-trans-wrapper{
    padding:5px;
}

.aq-trans-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-trans-title{
    font-size:30px;
    font-weight:700;
    margin:0;
    color:#111827;
}

.aq-trans-subtitle{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-trans-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.aq-trans-export-btn:hover{
    background:#4f28a5;
}

.aq-trans-stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.aq-trans-stat-card:hover{
    transform:translateY(-5px);
}

.aq-trans-stat-card h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:8px;
    color:#6133BD;
}

.aq-trans-stat-card span{
    color:#6b7280;
}

.aq-trans-stat-card.success h3{
    color:#16a34a;
}

.aq-trans-stat-card.warning h3{
    color:#d97706;
}

.aq-trans-stat-card.danger h3{
    color:#dc2626;
}

.aq-trans-chart-card,
.aq-trans-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-trans-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.aq-trans-card-header h4{
    margin:0;
    font-weight:700;
}

.aq-trans-card-header span{
    color:#6b7280;
    font-size:14px;
}

.aq-trans-chart-wrapper{
    height:400px;
    position:relative;
}

.aq-trans-chart-small{
    height:300px;
    position:relative;
}

.aq-trans-view-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:8px 16px;
    border-radius:10px;
}

.aq-trans-table thead{
    background:#f8f9fc;
}

.aq-trans-table th{
    font-weight:600;
    white-space:nowrap;
}

.aq-trans-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-trans-status.success{
    background:#dcfce7;
    color:#166534;
}

.aq-trans-status.pending{
    background:#fef3c7;
    color:#92400e;
}

.aq-trans-status.failed{
    background:#fee2e2;
    color:#991b1b;
}

.aq-trans-action-btn{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
    background:#6133BD;
    color:#fff;
}

.aq-trans-modal{
    border-radius:20px;
}

@media(max-width:768px){

    .aq-trans-export-btn{
        width:100%;
    }

    .aq-trans-chart-wrapper{
        height:280px;
    }

    .aq-trans-chart-small{
        height:240px;
    }

}

/* revenue page */

.aq-revenue-wrapper{
    padding:5px;
}

.aq-revenue-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-revenue-title{
    font-size:30px;
    font-weight:700;
    margin:0;
    color:#111827;
}

.aq-revenue-subtitle{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-revenue-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.aq-revenue-export-btn:hover{
    background:#4f28a5;
}

.aq-revenue-stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.aq-revenue-stat-card:hover{
    transform:translateY(-5px);
}

.aq-revenue-stat-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:8px;
    color:#6133BD;
}

.aq-revenue-stat-card span{
    color:#6b7280;
}

.aq-revenue-stat-card.success h3{
    color:#16a34a;
}

.aq-revenue-stat-card.warning h3{
    color:#d97706;
}

.aq-revenue-stat-card.info h3{
    color:#0284c7;
}

.aq-revenue-growth-card{
    margin-top:25px;
    background:linear-gradient(135deg,#6133BD,#9255CE);
    color:#fff;
    border-radius:20px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.aq-revenue-growth-left h4{
    margin:0;
    font-size:18px;
}

.aq-revenue-growth-left h2{
    margin:10px 0;
    font-size:42px;
    font-weight:700;
}

.aq-revenue-growth-left p{
    margin:0;
    opacity:.9;
}

.aq-revenue-growth-right i{
    font-size:70px;
    opacity:.3;
}

.aq-revenue-chart-card,
.aq-revenue-table-card,
.aq-revenue-plan-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-revenue-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.aq-revenue-card-header h4{
    margin:0;
    font-weight:700;
}

.aq-revenue-card-header span{
    color:#6b7280;
    font-size:14px;
}

.aq-revenue-chart-wrapper{
    height:420px;
    position:relative;
}

.aq-revenue-chart-small{
    height:320px;
    position:relative;
}

.aq-revenue-view-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:8px 16px;
    border-radius:10px;
}

.aq-revenue-table thead{
    background:#f8f9fc;
}

.aq-revenue-table th{
    font-weight:600;
    white-space:nowrap;
}

.aq-revenue-plan-item{
    background:#f8f9fc;
    border-radius:16px;
    padding:20px;
    text-align:center;
}

.aq-revenue-plan-item h5{
    margin-bottom:10px;
    font-weight:700;
}

.aq-revenue-plan-item span{
    color:#6133BD;
    font-weight:600;
}

@media(max-width:768px){

    .aq-revenue-export-btn{
        width:100%;
    }

    .aq-revenue-chart-wrapper{
        height:280px;
    }

    .aq-revenue-chart-small{
        height:240px;
    }

    .aq-revenue-growth-left h2{
        font-size:32px;
    }

}


/* refunds page  */

.aq-refund-wrapper{
    padding:5px;
}

.aq-refund-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-refund-title{
    font-size:30px;
    font-weight:700;
    margin:0;
    color:#111827;
}

.aq-refund-subtitle{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-refund-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.aq-refund-export-btn:hover{
    background:#4f28a5;
}

.aq-refund-stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    height:100%;
    transition:.3s;
}

.aq-refund-stat-card:hover{
    transform:translateY(-5px);
}

.aq-refund-stat-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:8px;
    color:#6133BD;
}

.aq-refund-stat-card.success h3{
    color:#16a34a;
}

.aq-refund-stat-card.warning h3{
    color:#d97706;
}

.aq-refund-stat-card.danger h3{
    color:#dc2626;
}

.aq-refund-stat-card span{
    color:#6b7280;
}

.aq-refund-banner{
    margin-top:25px;
    background:linear-gradient(135deg,#6133BD,#9255CE);
    border-radius:20px;
    padding:30px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.aq-refund-banner h4{
    margin:0;
}

.aq-refund-banner h2{
    margin-top:10px;
    font-size:40px;
    font-weight:700;
}

.aq-refund-banner i{
    font-size:65px;
    opacity:.3;
}

.aq-refund-chart-card,
.aq-refund-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-refund-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-refund-card-header h4{
    margin:0;
    font-weight:700;
}

.aq-refund-card-header span{
    color:#6b7280;
}

.aq-refund-chart-wrapper{
    height:400px;
    position:relative;
}

.aq-refund-chart-small{
    height:300px;
    position:relative;
}

.aq-refund-table thead{
    background:#f8f9fc;
}

.aq-refund-table th{
    font-weight:600;
    white-space:nowrap;
}

.aq-refund-status{
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.aq-refund-status.approved{
    background:#dcfce7;
    color:#166534;
}

.aq-refund-status.pending{
    background:#fef3c7;
    color:#92400e;
}

.aq-refund-status.rejected{
    background:#fee2e2;
    color:#991b1b;
}

.aq-refund-action-btn{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
    background:#6133BD;
    color:#fff;
}

.aq-refund-modal{
    border-radius:20px;
}

@media(max-width:768px){

    .aq-refund-export-btn{
        width:100%;
    }

    .aq-refund-banner{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .aq-refund-chart-wrapper{
        height:280px;
    }

    .aq-refund-chart-small{
        height:240px;
    }

    .aq-refund-banner h2{
        font-size:30px;
    }

}


/* gateway setting page  */

.aq-gateway-wrapper{
    padding:5px;
}

.aq-gateway-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}

.aq-gateway-title{
    font-size:30px;
    font-weight:700;
    margin:0;
    color:#111827;
}

.aq-gateway-subtitle{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-gateway-save-all-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.aq-gateway-save-all-btn:hover{
    background:#4f28a5;
}

.aq-gateway-stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.aq-gateway-stat-card:hover{
    transform:translateY(-5px);
}

.aq-gateway-stat-card i{
    font-size:42px;
    margin-bottom:15px;
}

.aq-gateway-stat-card h4{
    margin-bottom:6px;
    font-size:18px;
    font-weight:700;
}

.aq-gateway-stat-card span{
    font-size:14px;
    color:#6b7280;
}

.aq-gateway-stat-card.active i{
    color:#16a34a;
}

.aq-gateway-stat-card.warning i{
    color:#d97706;
}

.aq-gateway-stat-card.inactive i{
    color:#dc2626;
}

.aq-gateway-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-gateway-card-title{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
    padding-bottom:12px;
    border-bottom:1px solid #e5e7eb;
}

.aq-gateway-input{
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:12px 15px;
    min-height:50px;
    transition:.3s;
}

.aq-gateway-input:focus{
    border-color:#6133BD;
    box-shadow:0 0 0 0.15rem rgba(97,51,189,.15);
}

.aq-gateway-card label{
    font-weight:600;
    margin-bottom:8px;
    color:#374151;
    display:block;
}

.aq-gateway-switch-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:#f8fafc;
    border-radius:14px;
    margin-top:15px;
}

.aq-gateway-switch-box h6{
    margin:0;
    font-weight:600;
}

.aq-gateway-switch-box span{
    font-size:13px;
    color:#6b7280;
}

.aq-gateway-footer{
    margin-top:25px;
    text-align:right;
}

.aq-gateway-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 25px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.aq-gateway-save-btn:hover{
    background:#4f28a5;
}

.aq-gateway-api-note{
    background:#f3f4f6;
    border-left:4px solid #6133BD;
    padding:15px;
    border-radius:12px;
    margin-top:15px;
    font-size:14px;
    color:#4b5563;
}

@media(max-width:991px){

    .aq-gateway-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-gateway-save-all-btn{
        width:100%;
    }

}

@media(max-width:768px){

    .aq-gateway-title{
        font-size:24px;
    }

    .aq-gateway-card{
        padding:18px;
    }

    .aq-gateway-card-title{
        font-size:18px;
    }

    .aq-gateway-stat-card{
        padding:20px;
    }

    .aq-gateway-stat-card i{
        font-size:36px;
    }

}


/* all coupon page */

.aq-coupon-wrapper{
    padding:5px;
}

.aq-coupon-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.aq-coupon-title{
    font-size:30px;
    font-weight:700;
}

.aq-coupon-subtitle{
    color:#6b7280;
}

.aq-coupon-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 20px;
    border-radius:12px;
}

.aq-coupon-stat,
.aq-coupon-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-coupon-stat{
    text-align:center;
}

.aq-coupon-stat h3{
    font-size:30px;
    font-weight:700;
    color:#6133BD;
}

.aq-coupon-stat.success h3{
    color:#16a34a;
}

.aq-coupon-stat.danger h3{
    color:#dc2626;
}

.aq-coupon-stat.warning h3{
    color:#d97706;
}

.aq-coupon-card{
    margin-top:25px;
}

.aq-coupon-chart{
    height:350px;
}

.aq-coupon-table th{
    font-weight:600;
}

.aq-coupon-badge{
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
}

.aq-coupon-badge.active{
    background:#dcfce7;
    color:#166534;
}

.aq-coupon-badge.expired{
    background:#fee2e2;
    color:#991b1b;
}

.aq-coupon-edit,
.aq-coupon-delete{
    border:none;
    width:36px;
    height:36px;
    border-radius:10px;
    margin-right:5px;
}

.aq-coupon-edit{
    background:#e0e7ff;
    color:#4338ca;
}

.aq-coupon-delete{
    background:#fee2e2;
    color:#dc2626;
}

/* discount setting page  */

.aq-dis-wrapper{
    padding:5px;
}

.aq-dis-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.aq-dis-title{
    font-size:30px;
    font-weight:700;
}

.aq-dis-subtitle{
    color:#6b7280;
}

.aq-dis-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
}

.aq-dis-stat,
.aq-dis-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-dis-stat{
    text-align:center;
}

.aq-dis-stat h3{
    font-size:30px;
    font-weight:700;
    color:#6133BD;
}

.aq-dis-stat.success h3{
    color:#16a34a;
}

.aq-dis-stat.warning h3{
    color:#d97706;
}

.aq-dis-stat.info h3{
    color:#0287db;
}

.aq-dis-card{
    margin-top:25px;
}

.aq-dis-input{
    border-radius:12px;
}

.aq-dis-chart{
    height:350px;
}

.aq-dis-badge{
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
}

.aq-dis-badge.active{
    background:#dcfce7;
    color:#166534;
}

.aq-dis-edit{
    border:none;
    width:36px;
    height:36px;
    border-radius:10px;
    background:#e0e7ff;
    color:#4338ca;
}

/* coupon validity page  */

.aq-valid-wrapper{
    padding:5px;
}

.aq-valid-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.aq-valid-title{
    font-size:30px;
    font-weight:700;
}

.aq-valid-subtitle{
    color:#6b7280;
}

.aq-valid-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
}

.aq-valid-stat,
.aq-valid-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.aq-valid-stat{
    text-align:center;
}

.aq-valid-stat h3{
    font-size:30px;
    font-weight:700;
    color:#6133BD;
}

.aq-valid-stat.success h3{
    color:#16a34a;
}

.aq-valid-stat.danger h3{
    color:#dc2626;
}

.aq-valid-stat.warning h3{
    color:#f59e0b;
}

.aq-valid-card{
    margin-top:25px;
}

.aq-valid-chart{
    height:350px;
}

.aq-valid-badge{
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
}

.aq-valid-badge.active{
    background:#dcfce7;
    color:#166534;
}

.aq-valid-badge.warning{
    background:#fef3c7;
    color:#92400e;
}

.aq-valid-badge.expired{
    background:#fee2e2;
    color:#991b1b;
}

.aq-valid-edit{
    width:36px;
    height:36px;
    border:none;
    border-radius:10px;
    background:#eef2ff;
    color:#4338ca;
}


/* home banner page */


.aq-home-banner-page{
    padding:5px;
}

/* Header */

.aq-home-banner-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.aq-home-banner-header h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-home-banner-header p{
    color:#6b7280;
    margin:0;
}

.aq-banner-create-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:14px 24px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.aq-banner-create-btn:hover{
    transform:translateY(-3px);
}

/* Stats */

.aq-banner-stat-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.aq-stat-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#fff;
}

.purple{
    background:#6133BD;
}

.green{
    background:#10b981;
}

.blue{
    background:#0287db;
}

.orange{
    background:#f59e0b;
}

.aq-banner-stat-card span{
    color:#6b7280;
    display:block;
}

.aq-banner-stat-card h3{
    margin:0;
    font-size:30px;
    font-weight:700;
}

/* Featured Banner */

.aq-featured-banner{
    position:relative;
    height:450px;
    border-radius:28px;
    overflow:hidden;
}

.aq-featured-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.aq-banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.85),
        rgba(0,0,0,.25)
    );
    color:#fff;
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.aq-live-badge{
    background:#10b981;
    width:max-content;
    padding:8px 14px;
    border-radius:50px;
    margin-bottom:15px;
    font-size:13px;
}

.aq-banner-overlay h2{
    font-size:46px;
    font-weight:700;
    max-width:550px;
}

.aq-banner-overlay p{
    max-width:500px;
    margin:15px 0;
}

.aq-featured-buttons{
    margin-top:15px;
}

.aq-featured-buttons button{
    border:none;
    padding:12px 22px;
    border-radius:12px;
    margin-right:10px;
}

.aq-view-btn{
    background:#fff;
}

.aq-edit-btn{
    background:#6133BD;
    color:#fff;
}

/* Quick Actions */

.aq-banner-actions{
    background:#fff;
    padding:25px;
    border-radius:24px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.aq-banner-actions h4{
    margin-bottom:20px;
}

.aq-banner-actions a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#111827;
    background:#f8fafc;
    padding:15px;
    border-radius:14px;
    margin-bottom:12px;
    transition:.3s;
}

.aq-banner-actions a:hover{
    background:#6133BD;
    color:#fff;
}

/* Chart */

.aq-chart-card{
    background:#fff;
    margin-top:25px;
    border-radius:24px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.aq-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    flex-wrap:wrap;
    gap:15px;
}

.aq-chart-filter{
    width:220px;
}

.aq-chart-body{
    height:400px;
}

/* Upload Form */

.aq-upload-banner-card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    margin-top:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.aq-banner-input{
    min-height:50px;
    border-radius:14px;
}

.aq-banner-input:focus{
    box-shadow:none;
    border-color:#6133BD;
}

.aq-upload-box{
    border:2px dashed #d1d5db;
    border-radius:18px;
    text-align:center;
    padding:35px;
    position:relative;
}

.aq-upload-box i{
    font-size:40px;
    color:#6133BD;
}

.aq-upload-box input{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}

.aq-publish-banner-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:14px 30px;
    border-radius:14px;
    font-weight:600;
}

/* Gallery */

.aq-gallery-section{
    margin-top:30px;
}

.aq-gallery-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.aq-gallery-card:hover{
    transform:translateY(-8px);
}

.aq-gallery-image{
    position:relative;
}

.aq-gallery-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.aq-status-badge{
    position:absolute;
    top:15px;
    right:15px;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
}

.aq-status-badge.active{
    background:#dcfce7;
    color:#166534;
}

.aq-status-badge.draft{
    background:#fef3c7;
    color:#92400e;
}

.aq-status-badge.expired{
    background:#fee2e2;
    color:#991b1b;
}

.aq-gallery-body{
    padding:20px;
}

.aq-gallery-body h5{
    font-weight:700;
}

.aq-gallery-body p{
    color:#6b7280;
}

.aq-banner-stats{
    display:flex;
    justify-content:space-between;
    margin:20px 0;
}

.aq-banner-stats div{
    text-align:center;
}

.aq-banner-stats strong{
    display:block;
    font-size:18px;
}

.aq-banner-stats span{
    color:#6b7280;
    font-size:13px;
}

.aq-gallery-actions{
    display:flex;
    justify-content:center;
    gap:10px;
}

.aq-gallery-actions button{
    width:42px;
    height:42px;
    border:none;
    border-radius:12px;
    transition:.3s;
}

.aq-copy-btn{
    background:#e0f2fe;
    color:#0284c7;
}

.aq-delete-btn{
    background:#fee2e2;
    color:#dc2626;
}

/* Responsive */

@media(max-width:768px){

    .aq-banner-overlay{
        padding:25px;
    }

    .aq-banner-overlay h2{
        font-size:28px;
    }

    .aq-card-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-chart-filter{
        width:100%;
    }

}


/* offer banner page  */

/* OFFER PAGE */

.aq-offer-banner-page{
    padding:5px;
}

.aq-offer-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.aq-offer-create-btn{
    background:#6133BD;
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:14px;
}

.aq-offer-stat-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.aq-offer-stat-card h3{
    margin-top:10px;
    font-size:30px;
    font-weight:700;
}

.aq-featured-offer{
    position:relative;
    height:420px;
    border-radius:24px;
    overflow:hidden;
    margin-top:25px;
}

.aq-featured-offer img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.aq-offer-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    to right,
    rgba(0,0,0,.85),
    rgba(0,0,0,.2)
    );
    color:#fff;
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.aq-offer-overlay h2{
    font-size:48px;
    font-weight:700;
}

.aq-offer-badge{
    background:#f59e0b;
    width:max-content;
    padding:8px 14px;
    border-radius:30px;
    margin-bottom:15px;
}

.aq-offer-btns button{
    border:none;
    padding:12px 22px;
    border-radius:12px;
    margin-right:10px;
}

.aq-offer-chart-card,
.aq-revenue-summary,
.aq-mini-card,
.aq-offer-form-card,
.aq-offer-table-card,
.aq-offer-gallery-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    margin-top: 20px;
}

.aq-chart-wrapper{
    height:400px;
}

.aq-mini-card{
    text-align:center;
}

.aq-mini-card h2{
    font-size:34px;
    font-weight:700;
}

.aq-offer-input{
    min-height:50px;
    border-radius:12px;
}

.aq-offer-save-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
}

.aq-offer-banner-item{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.aq-offer-banner-item img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.aq-offer-banner-body{
    padding:20px;
}

.aq-offer-banner-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
}

.aq-status-active{
    background:#dcfce7;
    color:#166534;
    padding:6px 12px;
    border-radius:30px;
}

.aq-status-scheduled{
    background:#fef3c7;
    color:#92400e;
    padding:6px 12px;
    border-radius:30px;
}

.aq-status-expired{
    background:#fee2e2;
    color:#991b1b;
    padding:6px 12px;
    border-radius:30px;
}

.aq-table-actions button,
.aq-offer-banner-footer button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
}


/* send notification page  */

.aq-notification-page{
    padding:5px;
}

.aq-notification-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    flex-wrap:wrap;
    gap:15px;
}

.aq-notification-header h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-notification-header p{
    color:#6b7280;
    margin:0;
}

.aq-send-history-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 20px;
    border-radius:14px;
}

.aq-notification-card{
    background:#fff;
    padding:25px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.aq-notification-input{
    min-height:50px;
    border-radius:12px;
}

.aq-notification-input:focus{
    box-shadow:none;
    border-color:#6133BD;
}

.aq-upload-box{
    border:2px dashed #d1d5db;
    border-radius:18px;
    padding:35px;
    text-align:center;
    position:relative;
}

.aq-upload-box i{
    font-size:40px;
    color:#6133BD;
    margin-bottom:10px;
}

.aq-upload-box input{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}

.aq-send-notification-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:14px 28px;
    border-radius:14px;
    font-weight:600;
}

.aq-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-notification-table th{
    font-weight:600;
}

.aq-noti-status{
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.aq-noti-status.sent{
    background:#dcfce7;
    color:#166534;
}

.aq-noti-status.scheduled{
    background:#fef3c7;
    color:#92400e;
}

.aq-table-btn{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#f3f4f6;
}

@media(max-width:768px){

    .aq-notification-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-card-header{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

}


/* campaign page  */

.aq-campaign-page{
    padding:5px;
}

.aq-campaign-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.aq-create-campaign-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:14px;
}

.aq-campaign-stat,
.aq-campaign-box,
.aq-campaign-card{
    background:#fff;
    padding:26px 11px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.aq-campaign-stat{
    text-align:center;
}

.aq-campaign-stat h3{
    font-size:32px;
    font-weight:700;
}

.aq-campaign-box{
    text-align:center;
    transition:.3s;
}

.aq-campaign-box:hover{
    transform:translateY(-5px);
}

.aq-campaign-box i{
    font-size:40px;
    color:#6133BD;
    margin-bottom:15px;
}

.aq-campaign-input{
    min-height:50px;
    border-radius:12px;
}

.aq-save-campaign-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
}

.aq-action-btn{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
}

.aq-status-active{
    background:#dcfce7;
    color:#166534;
    padding:6px 12px;
    border-radius:30px;
}

.aq-status-scheduled{
    background:#fef3c7;
    color:#92400e;
    padding:6px 12px;
    border-radius:30px;
}

@media(max-width:768px){

    .aq-campaign-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}

/* notification report page  */

.aq-notification-report-page{
    padding:5px;
}

.aq-report-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    flex-wrap:wrap;
    gap:15px;
}

.aq-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:14px;
}

.aq-report-stat,
.aq-report-card{
    background:#fff;
    padding:25px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.aq-report-stat{
    text-align:center;
}

.aq-report-stat h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-report-stat span{
    color:#6b7280;
}

.aq-report-input{
    min-height:50px;
    border-radius:12px;
}

.aq-filter-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:12px;
    background:#6133BD;
    color:#fff;
}

.aq-report-status{
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.aq-report-status.success{
    background:#dcfce7;
    color:#166534;
}

.aq-report-status.failed{
    background:#fee2e2;
    color:#991b1b;
}

.aq-report-action{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#f3f4f6;
}

@media(max-width:768px){

    .aq-report-header{
        flex-direction:column;
        align-items:flex-start;
    }

}

/* acheivements page  */

.aq-achievement-page{
    padding:5px;
}

.aq-achievement-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    gap:15px;
}

.aq-achievement-header h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-achievement-header p{
    margin:0;
    color:#6b7280;
}

.aq-achievement-add-btn,
.aq-small-add-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 22px;
    border-radius:13px;
    font-weight:600;
}

.aq-achievement-stat{
    background:#fff;
    border-radius:20px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.aq-stat-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    background:#f1eaff;
    color:#6133BD;
    font-size:22px;
}

.reward-icon{
    background:#fff4df;
    color:#f59e0b;
}

.milestone-icon{
    background:#e8f7ff;
    color:#0287db;
}

.achiever-icon{
    background:#fff0f0;
    color:#ef4444;
}

.aq-achievement-stat span{
    color:#6b7280;
    font-size:13px;
}

.aq-achievement-stat h3{
    margin:4px 0;
    font-size:28px;
    font-weight:700;
}

.aq-achievement-stat small{
    color:#16a34a;
}

.aq-achievement-tabs-card{
    background:#fff;
    padding:10px;
    margin-top:30px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-achievement-tabs{
    display:flex;
    gap:8px;
    overflow-x:auto;
}

.aq-achievement-tab{
    border:none;
    background:transparent;
    padding:13px 20px;
    border-radius:12px;
    white-space:nowrap;
    color:#6b7280;
    font-weight:600;
}

.aq-achievement-tab.active{
    background:#6133BD;
    color:#fff;
}

.aq-achievement-content{
    display:none;
    margin-top:25px;
}

.aq-achievement-content.active{
    display:block;
}

.aq-section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-section-header h4{
    margin:0;
    font-weight:700;
}

.aq-section-header p{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-badge-card,
.aq-reward-card,
.aq-achievement-table-card,
.aq-leaderboard-card{
    background:#fff;
    border-radius:20px;
    padding:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-badge-card{
    text-align:center;
}

.aq-badge-icon{
    width:75px;
    height:75px;
    margin:0 auto 15px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f1eaff;
    color:#6133BD;
    font-size:30px;
}

.aq-badge-card h5{
    font-weight:700;
}

.aq-badge-card p{
    color:#6b7280;
    font-size:14px;
}

.aq-badge-info,
.aq-reward-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
    font-size:13px;
}

.aq-active-status{
    background:#dcfce7;
    color:#166534;
    padding:6px 11px;
    border-radius:30px;
    font-size:12px;
}

.aq-card-actions{
    display:flex;
    justify-content:center;
    gap:7px;
    margin-top:18px;
}

.aq-card-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
    background:#f3f4f6;
}

.aq-reward-icon{
    width:58px;
    height:58px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff4df;
    color:#f59e0b;
    font-size:24px;
    margin-bottom:15px;
}

.aq-reward-card h5{
    font-weight:700;
}

.aq-reward-card p{
    color:#6b7280;
}

.aq-ranking-filter{
    border:1px solid #ddd;
    padding:10px 15px;
    border-radius:10px;
}

.aq-leader-row{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px;
    border-bottom:1px solid #eee;
}

.aq-leader-row:last-child{
    border-bottom:none;
}

.aq-rank-number{
    width:40px;
    font-size:20px;
    font-weight:700;
    color:#6133BD;
}

.aq-student-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#6133BD;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.aq-student-info{
    flex:1;
    display:flex;
    flex-direction:column;
}

.aq-student-info span{
    font-size:13px;
    color:#6b7280;
    margin-top:4px;
}

.aq-achievement-points{
    text-align:right;
    display:flex;
    flex-direction:column;
}

.aq-achievement-points strong{
    font-size:20px;
}

.aq-achievement-points span{
    font-size:12px;
    color:#6b7280;
}

.top-rank{
    background:#faf8ff;
    border-radius:15px;
}

@media(max-width:768px){

    .aq-achievement-header,
    .aq-section-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-achievement-header h2{
        font-size:26px;
    }

    .aq-achievement-tabs{
        padding-bottom:3px;
    }

    .aq-leader-row{
        gap:10px;
    }

}


/* saved questions page  */

.aq-saved-question-page{
    padding:5px;
}


/*  HEADER */

.aq-saved-question-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    gap:15px;
}

.aq-saved-question-header h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-saved-question-header p{
    color:#6b7280;
    margin:0;
}

.aq-add-question-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:13px 22px;
    border-radius:13px;
    font-weight:600;
}


/*  STATS */

.aq-saved-stat{
    background:#fff;
    border-radius:20px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-saved-icon{
    width:52px;
    height:52px;
    border-radius:15px;
    background:#f1eaff;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.aq-saved-icon.purple{
    background:#eee8ff;
    color:#7c3aed;
}

.aq-saved-icon.orange{
    background:#fff4df;
    color:#f59e0b;
}

.aq-saved-icon.green{
    background:#e7f8ee;
    color:#16a34a;
}

.aq-saved-stat span{
    font-size:13px;
    color:#6b7280;
}

.aq-saved-stat h3{
    margin:4px 0;
    font-size:28px;
    font-weight:700;
}

.aq-saved-stat small{
    color:#6b7280;
    font-size:12px;
}


/*  FILTER */

.aq-saved-filter-card,
.aq-saved-question-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-saved-filter-card{
    margin-top:25px;
}

.aq-filter-top,
.aq-question-list-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-filter-top h4,
.aq-question-list-header h4{
    margin:0;
    font-weight:700;
}

.aq-filter-top p{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-bulk-btn{
    border:1px solid #ddd;
    background:#fff;
    padding:10px 16px;
    border-radius:10px;
}

.aq-search-box{
    height:50px;
    border:1px solid #dee2e6;
    border-radius:12px;
    display:flex;
    align-items:center;
    padding:0 15px;
}

.aq-search-box i{
    color:#9ca3af;
    margin-right:10px;
}

.aq-search-box input{
    border:none;
    outline:none;
    width:100%;
}

.aq-saved-select{
    min-height:50px;
    border-radius:12px;
}


/*  QUESTION HEADER  */

.aq-question-list-header{
    border-bottom:1px solid #eee;
    padding-bottom:20px;
}

.aq-question-list-header span{
    color:#6b7280;
    font-size:13px;
}

.aq-view-buttons{
    display:flex;
    gap:5px;
}

.aq-view-buttons button{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#f3f4f6;
}

.aq-view-buttons button.active{
    background:#6133BD;
    color:#fff;
}


/*  QUESTION ITEM */

.aq-saved-question-item{
    display:flex;
    gap:18px;
    padding:22px 5px;
    border-bottom:1px solid #eee;
}

.aq-question-check{
    padding-top:4px;
}

.aq-question-check input{
    width:18px;
    height:18px;
}

.aq-question-content{
    flex:1;
}

.aq-question-meta{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:8px;
}

.aq-question-id,
.aq-question-type,
.aq-question-difficulty{
    padding:5px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
}

.aq-question-id{
    background:#f3f4f6;
    color:#4b5563;
}

.aq-question-type{
    background:#eee8ff;
    color:#6133BD;
}

.aq-question-difficulty.medium{
    background:#fff4df;
    color:#b45309;
}

.aq-question-difficulty.easy{
    background:#dcfce7;
    color:#166534;
}

.aq-question-difficulty.hard{
    background:#fee2e2;
    color:#b91c1c;
}

.aq-question-content h5{
    font-size:16px;
    font-weight:600;
    margin:8px 0 12px;
}

.aq-question-options{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:14px;
}

.aq-question-options span{
    background:#f8fafc;
    border:1px solid #edf0f3;
    padding:7px 11px;
    border-radius:8px;
    font-size:13px;
    color:#4b5563;
}

.aq-question-details{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    color:#6b7280;
    font-size:12px;
}

.aq-question-details i{
    color:#6133BD;
    margin-right:4px;
}


/*  ACTIONS  */

.aq-question-actions{
    display:flex;
    gap:6px;
    align-items:flex-start;
}

.aq-question-actions button{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
    background:#f3f4f6;
    color:#4b5563;
}

.aq-question-actions button:hover{
    background:#6133BD;
    color:#fff;
}

.aq-question-actions button.delete:hover{
    background:#ef4444;
}


/* PAGINATION */

.aq-saved-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    margin-top:25px;
}

.aq-saved-pagination button{
    min-width:38px;
    height:38px;
    border:none;
    border-radius:9px;
    background:#f3f4f6;
}

.aq-saved-pagination button.active{
    background:#6133BD;
    color:#fff;
}

.aq-saved-pagination span{
    padding:0 5px;
    color:#777;
}


/* MOBILE */

@media(max-width:768px){

    .aq-saved-question-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-saved-question-header h2{
        font-size:26px;
    }

    .aq-filter-top,
    .aq-question-list-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aq-saved-question-item{
        flex-direction:column;
    }

    .aq-question-actions{
        width:100%;
    }

    .aq-question-options{
        flex-direction:column;
    }

}


/* saved tests page  */


.aq-saved-test-page{
    padding:5px;
}


/* =====================================
   HEADER
===================================== */

.aq-saved-test-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    gap:15px;
}

.aq-saved-test-header h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-saved-test-header p{
    color:#6b7280;
    margin:0;
}

.aq-create-test-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:13px 22px;
    border-radius:13px;
    font-weight:600;
}


/* =====================================
   STAT CARDS
===================================== */

.aq-test-stat{
    background:#fff;
    border-radius:20px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-test-stat-icon{
    width:52px;
    height:52px;
    border-radius:15px;
    background:#f1eaff;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.aq-test-stat-icon.published{
    background:#e7f8ee;
    color:#16a34a;
}

.aq-test-stat-icon.draft{
    background:#fff4df;
    color:#f59e0b;
}

.aq-test-stat-icon.attempts{
    background:#e8f5ff;
    color:#0287db;
}

.aq-test-stat span{
    font-size:13px;
    color:#6b7280;
}

.aq-test-stat h3{
    font-size:28px;
    font-weight:700;
    margin:4px 0;
}

.aq-test-stat small{
    color:#6b7280;
    font-size:12px;
}


/* =====================================
   FILTER
===================================== */

.aq-saved-test-filter-card,
.aq-saved-test-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-saved-test-filter-card{
    margin-top:25px;
}

.aq-test-filter-header,
.aq-test-list-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-test-filter-header h4,
.aq-test-list-header h4{
    margin:0;
    font-weight:700;
}

.aq-test-filter-header p{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-test-bulk-btn{
    border:1px solid #ddd;
    background:#fff;
    padding:10px 16px;
    border-radius:10px;
}

.aq-test-search{
    height:50px;
    border:1px solid #dee2e6;
    border-radius:12px;
    display:flex;
    align-items:center;
    padding:0 15px;
}

.aq-test-search i{
    color:#9ca3af;
    margin-right:10px;
}

.aq-test-search input{
    width:100%;
    border:none;
    outline:none;
}

.aq-test-select{
    min-height:50px;
    border-radius:12px;
}


/* =====================================
   TEST LIST
===================================== */

.aq-test-list-header{
    border-bottom:1px solid #eee;
    padding-bottom:20px;
}

.aq-test-list-header span{
    color:#6b7280;
    font-size:13px;
}

.aq-test-view-buttons{
    display:flex;
    gap:6px;
}

.aq-test-view-buttons button{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#f3f4f6;
}

.aq-test-view-buttons button.active{
    background:#6133BD;
    color:#fff;
}


/* =====================================
   TEST CARD
===================================== */

.aq-test-card{
    height:100%;
    padding:22px;
    border:1px solid #edf0f3;
    border-radius:20px;
    transition:.25s ease;
}

.aq-test-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.aq-test-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
}

.aq-test-type,
.aq-test-status{
    padding:6px 11px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
}

.aq-test-type{
    background:#f1eaff;
    color:#6133BD;
}

.aq-test-status.published{
    background:#dcfce7;
    color:#166534;
}

.aq-test-status.draft{
    background:#fff4df;
    color:#b45309;
}

.aq-test-main-icon{
    width:65px;
    height:65px;
    margin:22px 0 15px;
    border-radius:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f1eaff;
    color:#6133BD;
    font-size:27px;
}

.aq-test-main-icon.science{
    background:#e8f7ff;
    color:#0287db;
}

.aq-test-main-icon.computer{
    background:#fff0f5;
    color:#db2777;
}

.aq-test-card h5{
    font-size:17px;
    font-weight:700;
    margin-bottom:8px;
}

.aq-test-card > p{
    color:#6b7280;
    font-size:13px;
    line-height:1.6;
    min-height:42px;
}


/* =====================================
   TEST INFO
===================================== */

.aq-test-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:20px;
    padding:15px 0;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.aq-test-info-grid div{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.aq-test-info-grid span{
    color:#6b7280;
    font-size:11px;
}

.aq-test-info-grid span i{
    color:#6133BD;
    margin-right:4px;
}

.aq-test-info-grid strong{
    font-size:13px;
}


/* =====================================
   CARD FOOTER
===================================== */

.aq-test-card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:18px;
    gap:10px;
}

.aq-test-card-footer div:first-child{
    display:flex;
    flex-direction:column;
}

.aq-test-card-footer small{
    color:#9ca3af;
    font-size:11px;
}

.aq-test-card-footer strong{
    font-size:12px;
    margin-top:3px;
}

.aq-test-actions{
    display:flex;
    gap:5px;
}

.aq-test-actions button{
    width:35px;
    height:35px;
    border:none;
    border-radius:9px;
    background:#f3f4f6;
    color:#4b5563;
}

.aq-test-actions button:hover{
    background:#6133BD;
    color:#fff;
}

.aq-test-actions button.delete:hover{
    background:#ef4444;
}


/* =====================================
   PAGINATION
===================================== */

.aq-test-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    margin-top:28px;
}

.aq-test-pagination button{
    min-width:38px;
    height:38px;
    border:none;
    border-radius:9px;
    background:#f3f4f6;
}

.aq-test-pagination button.active{
    background:#6133BD;
    color:#fff;
}

.aq-test-pagination span{
    color:#777;
    padding:0 5px;
}


/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .aq-saved-test-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-saved-test-header h2{
        font-size:26px;
    }

    .aq-test-filter-header,
    .aq-test-list-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aq-test-card-footer{
        align-items:flex-start;
        flex-direction:column;
    }

    .aq-test-actions{
        width:100%;
    }

}

/* purchased plan page  */

.aq-purchased-plan-page{
    padding:5px;
}


/* =====================================
   HEADER
===================================== */

.aq-purchased-plan-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    gap:15px;
}

.aq-purchased-plan-header h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-purchased-plan-header p{
    margin:0;
    color:#6b7280;
}

.aq-plan-export-btn{
    border:1px solid #ddd;
    background:#fff;
    color:#6133BD;
    padding:12px 20px;
    border-radius:12px;
    font-weight:600;
}


/* =====================================
   STAT CARDS
===================================== */

.aq-plan-stat{
    background:#fff;
    border-radius:20px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-plan-stat-icon{
    width:52px;
    height:52px;
    border-radius:15px;
    background:#f1eaff;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.aq-plan-stat-icon.active{
    background:#e7f8ee;
    color:#16a34a;
}

.aq-plan-stat-icon.expired{
    background:#fff4df;
    color:#f59e0b;
}

.aq-plan-stat-icon.revenue{
    background:#e8f5ff;
    color:#0287db;
}

.aq-plan-stat span{
    font-size:13px;
    color:#6b7280;
}

.aq-plan-stat h3{
    font-size:28px;
    font-weight:700;
    margin:4px 0;
}

.aq-plan-stat small{
    color:#6b7280;
    font-size:12px;
}


/* =====================================
   FILTER CARD
===================================== */

.aq-purchased-filter-card,
.aq-purchased-table-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-purchased-filter-card{
    margin-top:25px;
}

.aq-purchased-filter-header,
.aq-purchased-table-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-purchased-filter-header h4,
.aq-purchased-table-header h4{
    margin:0;
    font-weight:700;
}

.aq-purchased-filter-header p{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-purchased-bulk-btn{
    border:1px solid #ddd;
    background:#fff;
    padding:10px 16px;
    border-radius:10px;
}


/* =====================================
   SEARCH
===================================== */

.aq-plan-search{
    height:50px;
    border:1px solid #dee2e6;
    border-radius:12px;
    display:flex;
    align-items:center;
    padding:0 15px;
}

.aq-plan-search i{
    color:#9ca3af;
    margin-right:10px;
}

.aq-plan-search input{
    width:100%;
    border:none;
    outline:none;
}

.aq-plan-select{
    min-height:50px;
    border-radius:12px;
}


/* =====================================
   TABLE HEADER
===================================== */

.aq-purchased-table-header{
    border-bottom:1px solid #eee;
    padding-bottom:20px;
}

.aq-purchased-table-header span{
    color:#6b7280;
    font-size:13px;
}

.aq-table-view-buttons{
    display:flex;
    gap:6px;
}

.aq-table-view-buttons button{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#f3f4f6;
}

.aq-table-view-buttons button.active{
    background:#6133BD;
    color:#fff;
}


/* =====================================
   TABLE
===================================== */

.aq-purchased-table{
    min-width:1100px;
}

.aq-purchased-table thead th{
    background:#faf9fd;
    color:#6b7280;
    font-size:12px;
    font-weight:600;
    padding:15px;
    white-space:nowrap;
}

.aq-purchased-table tbody td{
    padding:17px 15px;
    font-size:13px;
    color:#4b5563;
    border-bottom:1px solid #f0f0f0;
}

.aq-purchased-table tbody tr:hover{
    background:#fcfbff;
}


/* =====================================
   STUDENT
===================================== */

.aq-student-cell{
    display:flex;
    align-items:center;
    gap:11px;
    min-width:180px;
}

.aq-student-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#6133BD;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

.aq-student-avatar.blue{
    background:#0287db;
}

.aq-student-avatar.orange{
    background:#f59e0b;
}

.aq-student-avatar.green{
    background:#16a34a;
}

.aq-student-cell div:last-child{
    display:flex;
    flex-direction:column;
}

.aq-student-cell strong{
    color:#1f2937;
    font-size:13px;
}

.aq-student-cell span{
    color:#9ca3af;
    font-size:11px;
    margin-top:3px;
}


/* =====================================
   PLAN CELL
===================================== */

.aq-plan-cell{
    display:flex;
    flex-direction:column;
}

.aq-plan-cell strong{
    color:#1f2937;
    font-size:13px;
}

.aq-plan-cell span{
    color:#9ca3af;
    font-size:11px;
    margin-top:3px;
}


/* =====================================
   PAYMENT STATUS
===================================== */

.aq-payment-status,
.aq-plan-status{
    display:inline-block;
    padding:6px 11px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
    white-space:nowrap;
}

.aq-payment-status.paid{
    background:#dcfce7;
    color:#166534;
}

.aq-payment-status.pending{
    background:#fff4df;
    color:#b45309;
}

.aq-plan-status.active{
    background:#e7f8ee;
    color:#15803d;
}

.aq-plan-status.expired{
    background:#fee2e2;
    color:#b91c1c;
}

.aq-plan-status.pending{
    background:#fff4df;
    color:#b45309;
}


/* =====================================
   ACTIONS
===================================== */

.aq-plan-actions{
    display:flex;
    gap:5px;
}

.aq-plan-actions button{
    width:35px;
    height:35px;
    border:none;
    border-radius:9px;
    background:#f3f4f6;
    color:#4b5563;
}

.aq-plan-actions button:hover{
    background:#6133BD;
    color:#fff;
}


/* =====================================
   PAGINATION
===================================== */

.aq-plan-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    margin-top:25px;
}

.aq-plan-pagination button{
    min-width:38px;
    height:38px;
    border:none;
    border-radius:9px;
    background:#f3f4f6;
}

.aq-plan-pagination button.active{
    background:#6133BD;
    color:#fff;
}

.aq-plan-pagination span{
    color:#777;
    padding:0 5px;
}


/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .aq-purchased-plan-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-purchased-plan-header h2{
        font-size:26px;
    }

    .aq-purchased-filter-header,
    .aq-purchased-table-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aq-purchased-table-card{
        padding:15px;
    }

}

/* active plans page  */

.aq-active-plan-page{
    padding:5px;
}


/* =====================================
   HEADER
===================================== */

.aq-active-plan-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    gap:15px;
}

.aq-active-plan-header h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-active-plan-header p{
    margin:0;
    color:#6b7280;
}

.aq-active-export-btn{
    border:1px solid #ddd;
    background:#fff;
    color:#6133BD;
    padding:12px 20px;
    border-radius:12px;
    font-weight:600;
}


/* =====================================
   STATS
===================================== */

.aq-active-stat{
    background:#fff;
    border-radius:20px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-active-stat-icon{
    width:52px;
    height:52px;
    border-radius:15px;
    background:#f1eaff;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.aq-active-stat-icon.revenue{
    background:#e8f5ff;
    color:#0287db;
}

.aq-active-stat-icon.warning{
    background:#fff4df;
    color:#f59e0b;
}

.aq-active-stat-icon.success{
    background:#e7f8ee;
    color:#16a34a;
}

.aq-active-stat span{
    font-size:13px;
    color:#6b7280;
}

.aq-active-stat h3{
    font-size:28px;
    font-weight:700;
    margin:4px 0;
}

.aq-active-stat small{
    color:#6b7280;
    font-size:12px;
}


/* =====================================
   FILTER
===================================== */

.aq-active-filter-card,
.aq-active-table-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-active-filter-card{
    margin-top:25px;
}

.aq-active-filter-header,
.aq-active-table-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-active-filter-header h4,
.aq-active-table-header h4{
    margin:0;
    font-weight:700;
}

.aq-active-filter-header p{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-active-bulk-btn{
    border:1px solid #ddd;
    background:#fff;
    padding:10px 16px;
    border-radius:10px;
}


/* =====================================
   SEARCH
===================================== */

.aq-active-search{
    height:50px;
    border:1px solid #dee2e6;
    border-radius:12px;
    display:flex;
    align-items:center;
    padding:0 15px;
}

.aq-active-search i{
    color:#9ca3af;
    margin-right:10px;
}

.aq-active-search input{
    width:100%;
    border:none;
    outline:none;
}

.aq-active-select{
    min-height:50px;
    border-radius:12px;
}


/* =====================================
   TABLE HEADER
===================================== */

.aq-active-table-header{
    border-bottom:1px solid #eee;
    padding-bottom:20px;
}

.aq-active-table-header span{
    color:#6b7280;
    font-size:13px;
}

.aq-active-view-buttons{
    display:flex;
    gap:6px;
}

.aq-active-view-buttons button{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#f3f4f6;
}

.aq-active-view-buttons button.active{
    background:#6133BD;
    color:#fff;
}


/* =====================================
   TABLE
===================================== */

.aq-active-table{
    min-width:1150px;
}

.aq-active-table thead th{
    background:#faf9fd;
    color:#6b7280;
    font-size:12px;
    font-weight:600;
    padding:15px;
    white-space:nowrap;
}

.aq-active-table tbody td{
    padding:17px 15px;
    font-size:13px;
    color:#4b5563;
    border-bottom:1px solid #f0f0f0;
}

.aq-active-table tbody tr:hover{
    background:#fcfbff;
}


/* =====================================
   STUDENT
===================================== */

.aq-active-student{
    display:flex;
    align-items:center;
    gap:11px;
    min-width:180px;
}

.aq-active-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#6133BD;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

.aq-active-avatar.blue{
    background:#0287db;
}

.aq-active-avatar.orange{
    background:#f59e0b;
}

.aq-active-avatar.green{
    background:#16a34a;
}

.aq-active-student div:last-child{
    display:flex;
    flex-direction:column;
}

.aq-active-student strong{
    color:#1f2937;
    font-size:13px;
}

.aq-active-student span{
    color:#9ca3af;
    font-size:11px;
    margin-top:3px;
}


/* =====================================
   PLAN
===================================== */

.aq-active-plan-name{
    display:flex;
    flex-direction:column;
}

.aq-active-plan-name strong{
    color:#1f2937;
    font-size:13px;
}

.aq-active-plan-name span{
    color:#9ca3af;
    font-size:11px;
    margin-top:3px;
}


/* =====================================
   REMAINING DAYS
===================================== */

.aq-remaining{
    min-width:120px;
}

.aq-remaining strong{
    font-size:12px;
    color:#16a34a;
}

.aq-remaining.warning-text strong{
    color:#f59e0b;
}

.aq-progress{
    width:100%;
    height:5px;
    background:#edf0f3;
    border-radius:10px;
    overflow:hidden;
    margin-top:6px;
}

.aq-progress span{
    display:block;
    height:100%;
    background:#16a34a;
    border-radius:10px;
}

.aq-progress.warning span{
    background:#f59e0b;
}


/* =====================================
   STATUS
===================================== */

.aq-active-status{
    display:inline-block;
    padding:6px 11px;
    border-radius:20px;
    background:#dcfce7;
    color:#166534;
    font-size:11px;
    font-weight:600;
}


/* =====================================
   ACTIONS
===================================== */

.aq-active-actions{
    display:flex;
    gap:5px;
}

.aq-active-actions button{
    width:35px;
    height:35px;
    border:none;
    border-radius:9px;
    background:#f3f4f6;
    color:#4b5563;
}

.aq-active-actions button:hover{
    background:#6133BD;
    color:#fff;
}


/* =====================================
   PAGINATION
===================================== */

.aq-active-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    margin-top:25px;
}

.aq-active-pagination button{
    min-width:38px;
    height:38px;
    border:none;
    border-radius:9px;
    background:#f3f4f6;
}

.aq-active-pagination button.active{
    background:#6133BD;
    color:#fff;
}

.aq-active-pagination span{
    color:#777;
    padding:0 5px;
}


/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .aq-active-plan-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-active-plan-header h2{
        font-size:26px;
    }

    .aq-active-filter-header,
    .aq-active-table-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aq-active-table-card{
        padding:15px;
    }

}

/* expired plans page  */

.aq-expired-plan-page{
    padding:5px;
}


/* =====================================
   HEADER
===================================== */

.aq-expired-plan-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    gap:15px;
}

.aq-expired-plan-header h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.aq-expired-plan-header p{
    margin:0;
    color:#6b7280;
}

.aq-expired-export-btn{
    border:1px solid #ddd;
    background:#fff;
    color:#6133BD;
    padding:12px 20px;
    border-radius:12px;
    font-weight:600;
    transition:.2s;
}

.aq-expired-export-btn:hover{
    background:#6133BD;
    color:#fff;
}


/* =====================================
   STATS
===================================== */

.aq-expired-stat{
    background:#fff;
    border-radius:20px;
    padding:19px;
    display:flex;
    align-items:center;
    gap:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-expired-stat-icon{
    width:52px;
    height:52px;
    border-radius:15px;
    background:#f1eaff;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.aq-expired-stat-icon.orange{
    background:#fff4df;
    color:#f59e0b;
}

.aq-expired-stat-icon.blue{
    background:#e8f5ff;
    color:#0287db;
}

.aq-expired-stat-icon.red{
    background:#feecec;
    color:#dc2626;
}

.aq-expired-stat span{
    font-size:13px;
    color:#6b7280;
}

.aq-expired-stat h3{
    font-size:28px;
    font-weight:700;
    margin:4px 0;
}

.aq-expired-stat small{
    color:#6b7280;
    font-size:12px;
}


/* =====================================
   FILTER CARD
===================================== */

.aq-expired-filter-card,
.aq-expired-table-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-expired-filter-card{
    margin-top:25px;
}

.aq-expired-filter-header,
.aq-expired-table-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-expired-filter-header h4,
.aq-expired-table-header h4{
    margin:0;
    font-weight:700;
}

.aq-expired-filter-header p{
    margin:5px 0 0;
    color:#6b7280;
}

.aq-expired-bulk-btn{
    border:1px solid #ddd;
    background:#fff;
    padding:10px 16px;
    border-radius:10px;
}


/* =====================================
   SEARCH
===================================== */

.aq-expired-search{
    height:50px;
    border:1px solid #dee2e6;
    border-radius:12px;
    display:flex;
    align-items:center;
    padding:0 15px;
}

.aq-expired-search i{
    color:#9ca3af;
    margin-right:10px;
}

.aq-expired-search input{
    width:100%;
    border:none;
    outline:none;
}

.aq-expired-select{
    min-height:50px;
    border-radius:12px;
}


/* =====================================
   TABLE HEADER
===================================== */

.aq-expired-table-header{
    border-bottom:1px solid #eee;
    padding-bottom:20px;
}

.aq-expired-table-header span{
    color:#6b7280;
    font-size:13px;
}

.aq-expired-view-buttons{
    display:flex;
    gap:6px;
}

.aq-expired-view-buttons button{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#f3f4f6;
}

.aq-expired-view-buttons button.active{
    background:#6133BD;
    color:#fff;
}


/* =====================================
   TABLE
===================================== */

.aq-expired-table{
    min-width:1150px;
}

.aq-expired-table thead th{
    background:#faf9fd;
    color:#6b7280;
    font-size:12px;
    font-weight:600;
    padding:15px;
    white-space:nowrap;
}

.aq-expired-table tbody td{
    padding:17px 15px;
    font-size:13px;
    color:#4b5563;
    border-bottom:1px solid #f0f0f0;
}

.aq-expired-table tbody tr:hover{
    background:#fffafa;
}


/* =====================================
   STUDENT
===================================== */

.aq-expired-student{
    display:flex;
    align-items:center;
    gap:11px;
    min-width:180px;
}

.aq-expired-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#6133BD;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

.aq-expired-avatar.blue{
    background:#0287db;
}

.aq-expired-avatar.orange{
    background:#f59e0b;
}

.aq-expired-avatar.green{
    background:#16a34a;
}

.aq-expired-student div:last-child{
    display:flex;
    flex-direction:column;
}

.aq-expired-student strong{
    color:#1f2937;
    font-size:13px;
}

.aq-expired-student span{
    color:#9ca3af;
    font-size:11px;
    margin-top:3px;
}


/* =====================================
   PLAN
===================================== */

.aq-expired-plan-name{
    display:flex;
    flex-direction:column;
}

.aq-expired-plan-name strong{
    color:#1f2937;
    font-size:13px;
}

.aq-expired-plan-name span{
    color:#9ca3af;
    font-size:11px;
    margin-top:3px;
}


/* =====================================
   EXPIRED DAYS
===================================== */

.aq-expired-days{
    display:inline-block;
    padding:6px 10px;
    border-radius:20px;
    background:#fff4df;
    color:#b45309;
    font-size:11px;
    font-weight:600;
    white-space:nowrap;
}

.aq-expired-days.old{
    background:#fee2e2;
    color:#b91c1c;
}


/* =====================================
   RENEWAL STATUS
===================================== */

.aq-renewal-status{
    display:inline-block;
    padding:6px 11px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
    white-space:nowrap;
}

.aq-renewal-status.pending{
    background:#fff4df;
    color:#b45309;
}

.aq-renewal-status.sent{
    background:#e8f5ff;
    color:#0369a1;
}

.aq-renewal-status.not-contacted{
    background:#f3f4f6;
    color:#4b5563;
}

.aq-renewal-status.renewed{
    background:#dcfce7;
    color:#166534;
}


/* =====================================
   ACTIONS
===================================== */

.aq-expired-actions{
    display:flex;
    gap:5px;
}

.aq-expired-actions button{
    width:35px;
    height:35px;
    border:none;
    border-radius:9px;
    background:#f3f4f6;
    color:#4b5563;
}

.aq-expired-actions button:hover{
    background:#6133BD;
    color:#fff;
}

.aq-expired-actions button.renew:hover{
    background:#16a34a;
}


/* =====================================
   PAGINATION
===================================== */

.aq-expired-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    margin-top:25px;
}

.aq-expired-pagination button{
    min-width:38px;
    height:38px;
    border:none;
    border-radius:9px;
    background:#f3f4f6;
}

.aq-expired-pagination button.active{
    background:#6133BD;
    color:#fff;
}

.aq-expired-pagination span{
    color:#777;
    padding:0 5px;
}


/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .aq-expired-plan-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-expired-plan-header h2{
        font-size:26px;
    }

    .aq-expired-filter-header,
    .aq-expired-table-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aq-expired-table-card{
        padding:15px;
    }

}


/* user report page  */


.aq-user-report-page{
    padding:5px;
}

.aq-user-report-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.aq-user-export-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 20px;
    border-radius:12px;
}

.aq-user-report-stat{
    background:#fff;
    border-radius:18px;
    padding:22px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-user-report-stat span{
    color:#6b7280;
    font-size:13px;
}

.aq-user-report-stat h3{
    margin-top:10px;
    font-size:28px;
    font-weight:700;
}

.aq-user-chart-card,
.aq-user-report-table-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-chart-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;
}

.aq-table-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-table-top input{
    width:280px;
    height:45px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 15px;
}

.aq-user-report-table thead th{
    background:#faf9fd;
    padding:15px;
}

.aq-user-report-table td{
    padding:15px;
}

.aq-user-status{
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.aq-user-status.active{
    background:#dcfce7;
    color:#166534;
}

.aq-view-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:8px 14px;
    border-radius:8px;
}

@media(max-width:768px){

    .aq-user-report-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aq-table-top{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aq-table-top input{
        width:100%;
    }

}

/* sales report page */

.aq-sales-report-page{
    padding:5px;
}

/* HEADER */

.aq-sales-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    gap:15px;
}

.aq-sales-actions{
    display:flex;
    gap:10px;
}

.aq-sales-filter-btn,
.aq-sales-export-btn{
    border:none;
    padding:12px 18px;
    border-radius:12px;
    font-weight:600;
}

.aq-sales-filter-btn{
    background:#f3f4f6;
}

.aq-sales-export-btn{
    background:#6133BD;
    color:#fff;
}


/* CARDS */

.aq-sales-stat-card{
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-sales-stat-card span{
    color:#6b7280;
    font-size:13px;
}

.aq-sales-stat-card h3{
    font-size:30px;
    margin:10px 0;
    font-weight:700;
}

.aq-sales-stat-card small{
    color:#16a34a;
}


/* CHART CARD */

.aq-sales-chart-card,
.aq-sales-table-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aq-sales-card-head{
    margin-bottom:20px;
}

.aq-sales-card-head h4{
    margin:0;
    font-weight:700;
}


/* TOP PLANS */

.aq-top-plans{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.aq-plan-item{
    display:flex;
    justify-content:space-between;
    padding:14px;
    border-radius:12px;
    background:#faf9fd;
}


/* TABLE */

.aq-sales-table-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.aq-sales-table-top input{
    width:280px;
    height:45px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 15px;
}

.aq-sales-table thead th{
    background:#faf9fd;
    padding:15px;
}

.aq-sales-table td{
    padding:15px;
}

.aq-sale-status{
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.aq-sale-status.success{
    background:#dcfce7;
    color:#166534;
}

@media(max-width:768px){

    .aq-sales-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .aq-sales-table-top{
        flex-direction:column;
        gap:15px;
        align-items:flex-start;
    }

    .aq-sales-table-top input{
        width:100%;
    }

}

/* profile setting page  */

.aqs-profile-wrapper{
    margin-bottom:30px;
}

.aqs-cover-banner{
    height:260px;
    border-radius:24px;
    background:linear-gradient(135deg,#6133BD,#9255CE);
    position:relative;
    overflow:hidden;
}

.aqs-cover-overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.05);
}

.aqs-profile-header{
    margin-top:-70px;
    padding:0 35px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

.aqs-profile-left{
    display:flex;
    align-items:center;
    gap:25px;
}

.aqs-profile-image{
    position:relative;
}

.aqs-profile-image img{
    width:140px;
    height:140px;
    border-radius:50%;
    border:6px solid #fff;
    object-fit:cover;
    background:#fff;
}

.aqs-upload-btn{
    position:absolute;
    right:5px;
    bottom:5px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#6133BD;
    color:#fff;
}

.aqs-profile-info h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:6px;
}

.aqs-profile-info p{
    color:#6b7280;
    padding-top: 36px;
}

.aqs-profile-badges{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.aqs-profile-badges span{
    background:#ede9fe;
    color:#6133BD;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.aqs-edit-btn{
    background:#6133BD;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:14px;
    font-weight:600;
}

/* =========================================
STATS
========================================= */

.aqs-stat-card{
    background:#fff;
    border-radius:22px;
    padding:22px;
    display:flex;
    gap:18px;
    align-items:center;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aqs-stat-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#ede9fe;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.aqs-stat-content h3{
    margin:0;
    font-size:24px;
    font-weight:700;
}

.aqs-stat-content p{
    margin:0;
    color:#6b7280;
}

/* =========================================
CARDS
========================================= */

.aqs-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    margin-top:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aqs-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.aqs-card-header h4{
    margin:0;
    font-weight:700;
}

.aqs-card-header p{
    margin:5px 0 0;
    color:#6b7280;
}

/* =========================================
FORMS
========================================= */

.aqs-label{
    font-weight:600;
    margin-bottom:8px;
    display:block;
}

.aqs-input{
    border:1px solid #dbe2ea !important;
    border-radius:14px !important;
    padding:12px 14px !important;
}

.aqs-input:focus{
    border-color:#6133BD !important;
    box-shadow:0 0 0 3px rgba(97,51,189,.12) !important;
}

/* =========================================
SECURITY
========================================= */

.aqs-security-score{
    background:#dcfce7;
    color:#166534;
    padding:10px 14px;
    border-radius:12px;
    font-weight:600;
}

.aqs-security-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.aqs-security-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    border:1px solid #edf2f7;
    border-radius:16px;
}

.aqs-status-active{
    background:#dcfce7;
    color:#166534;
    padding:10px 15px;
    border-radius:10px;
    font-weight:600;
}

/* SWITCH */

.aqs-switch{
    position:relative;
    width:55px;
    height:30px;
}

.aqs-switch input{
    display:none;
}

.aqs-slider{
    position:absolute;
    inset:0;
    background:#d1d5db;
    border-radius:30px;
    cursor:pointer;
}

.aqs-slider:before{
    content:"";
    width:24px;
    height:24px;
    background:#fff;
    border-radius:50%;
    position:absolute;
    top:3px;
    left:3px;
    transition:.3s;
}

.aqs-switch input:checked + .aqs-slider{
    background:#6133BD;
}

.aqs-switch input:checked + .aqs-slider:before{
    transform:translateX(25px);
}

/* =========================================
SESSIONS
========================================= */

.aqs-session-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.aqs-session-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid #edf2f7;
    border-radius:16px;
    padding:18px;
}

.aqs-session-left{
    display:flex;
    gap:15px;
    align-items:center;
}

.aqs-session-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    background:#ede9fe;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
}

.aqs-session-active{
    background:#dcfce7;
    color:#166534;
    padding:8px 14px;
    border-radius:10px;
    font-weight:600;
}

.aqs-logout-btn{
    border:none;
    background:#fee2e2;
    color:#dc2626;
    padding:10px 14px;
    border-radius:10px;
}

/* =========================================
TABLE
========================================= */

.aqs-badge-success{
    background:#dcfce7;
    color:#166534;
    padding:7px 12px;
    border-radius:8px;
}

.aqs-badge-danger{
    background:#fee2e2;
    color:#dc2626;
    padding:7px 12px;
    border-radius:8px;
}

/* =========================================
DEVICE CARD
========================================= */

.aqs-device-card{
    border:1px solid #edf2f7;
    border-radius:18px;
    padding:25px;
    text-align:center;
}

.aqs-device-card i{
    font-size:35px;
    color:#6133BD;
    margin-bottom:15px;
}

/* =========================================
SAVE FOOTER
========================================= */

.aqs-save-footer{
    display:flex;
    justify-content:flex-end;
    gap:15px;
    margin-top:30px;
}

.aqs-btn-cancel{
    border:none;
    background:#e5e7eb;
    padding:12px 24px;
    border-radius:14px;
    font-weight:600;
}

.aqs-btn-save{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 24px;
    border-radius:14px;
    font-weight:600;
}


@media (max-width: 992px){

    .aqs-profile-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
        margin-top:-60px;
        padding:0 20px;
    }

    .aqs-profile-left{
        width:100%;
    }

    .aqs-profile-right{
        width:100%;
    }

    .aqs-edit-btn{
        width:100%;
    }

    .aqs-card{
        padding:20px;
    }

    .aqs-card-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aqs-security-item{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aqs-session-item{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aqs-session-left{
        width:100%;
    }

    .aqs-device-card{
        padding:20px;
    }

}

/* =========================================
MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px){

    .aqs-cover-banner{
        height:180px;
        border-radius:18px;
    }

    .aqs-profile-header{
        margin-top:-50px;
        padding:0 15px;
    }

    .aqs-profile-left{
        flex-direction:column;
        text-align:center;
        width:100%;
    }

    .aqs-profile-info{
        width:100%;
    }

    .aqs-profile-info h2{
        font-size:24px;
    }

    .aqs-profile-image img{
        width:110px;
        height:110px;
    }

    .aqs-profile-badges{
        justify-content:center;
    }

    .aqs-stat-card{
        padding:18px;
    }

    .aqs-stat-content h3{
        font-size:20px;
    }

    .aqs-card{
        padding:18px;
        border-radius:18px;
    }

    .aqs-card-header h4{
        font-size:18px;
    }

    .aqs-security-score{
        width:100%;
        text-align:center;
    }

    .aqs-session-item{
        padding:15px;
    }

    .aqs-session-left{
        flex-direction:column;
        align-items:flex-start;
    }

    .aqs-device-card{
        padding:18px;
    }

    .aqs-device-card i{
        font-size:28px;
    }

    .table-responsive{
        overflow-x:auto;
    }

    .aqs-save-footer{
        flex-direction:column;
    }

    .aqs-btn-save,
    .aqs-btn-cancel{
        width:100%;
    }

}

/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 480px){

    .aqs-profile-wrapper{
        margin-bottom:20px;
    }

    .aqs-profile-image img{
        width:90px;
        height:90px;
    }

    .aqs-upload-btn{
        width:34px;
        height:34px;
        font-size:12px;
    }

    .aqs-profile-info h2{
        font-size:20px;
    }

    .aqs-profile-info p{
        font-size:13px;
    }

    .aqs-profile-badges span{
        font-size:11px;
        padding:6px 10px;
    }

    .aqs-stat-card{
        flex-direction:column;
        text-align:center;
    }

    .aqs-stat-icon{
        width:50px;
        height:50px;
        font-size:18px;
    }

    .aqs-card{
        padding:15px;
    }

    .aqs-input{
        font-size:14px;
    }

}


/* share app page  */

.aqs-page-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.aqs-page-header h2{
    font-weight:700;
    margin-bottom:5px;
}

.aqs-page-header p{
    color:#6b7280;
}

.aqs-share-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:12px 20px;
    border-radius:14px;
    font-weight:600;
}

.aqs-share-stat-card{
    background:#fff;
    border-radius:20px;
    padding:24px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aqs-share-icon{
    width:65px;
    height:65px;
    margin:auto;
    border-radius:18px;
    background:#ede9fe;
    color:#6133BD;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:15px;
}

.aqs-share-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aqs-share-link-box{
    display:flex;
    gap:15px;
}

.aqs-copy-btn{
    border:none;
    background:#6133BD;
    color:#fff;
    padding:0 18px;
    border-radius:12px;
    white-space:nowrap;
}

.aqs-share-platforms{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.aqs-platform{
    border:none;
    padding:14px 20px;
    border-radius:14px;
    color:#fff;
    font-weight:600;
}

.whatsapp{background:#25D366;}
.telegram{background:#229ED9;}
.facebook{background:#1877F2;}
.twitter{background:#111827;}

.aqs-ref-badge{
    background:#dcfce7;
    color:#166534;
    padding:7px 12px;
    border-radius:8px;
}

.aqs-share-footer{
    margin-top:30px;
    text-align:right;
}

/* Responsive */

@media(max-width:768px){

    .aqs-page-header{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .aqs-share-link-box{
        flex-direction:column;
    }

    .aqs-copy-btn,
    .aqs-share-btn{
        width:100%;
    }

    .aqs-share-footer{
        text-align:center;
    }

}

/* rate app page  */

.aqs-rate-stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aqs-rate-icon{
    width:65px;
    height:65px;
    margin:auto;
    border-radius:18px;
    background:#ede9fe;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:15px;
}

.aqs-rate-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.aqs-rating-row{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.aqs-rating-row .progress{
    flex:1;
    height:10px;
    border-radius:20px;
}

.aqs-rating-row .progress-bar{
    background:#6133BD;
}

.aqs-store-card{
    display:flex;
    align-items:center;
    gap:20px;
}

.aqs-store-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
}

.aqs-store-icon.google{
    background:#34A853;
}

.aqs-store-icon.apple{
    background:#111827;
}

.aqs-review-approved{
    background:#dcfce7;
    color:#166534;
    padding:7px 12px;
    border-radius:8px;
}

.aqs-review-pending{
    background:#fef3c7;
    color:#92400e;
    padding:7px 12px;
    border-radius:8px;
}

/* Responsive */

@media(max-width:768px){

    .aqs-store-card{
        flex-direction:column;
        text-align:center;
    }

    .aqs-rating-row{
        flex-wrap:wrap;
    }

}




