/* =========================================================
ROOT ADMIN DASHBOARD
========================================================= */

.AdminDashboard-wrapper{

    --dash-bg: #f1f5f9;
    --dash-card: #ffffff;
    --dash-card2: #fffdf8;
    --dash-text: #1e293b;
    --dash-subtext: #64748b;
    --dash-border: #e2e8f0;
    --dash-hover: #f8fafc;
    --dash-primary: #0d6efd;
    --dash-primary2: #2563eb;
    --dash-shadow: rgba(0,0,0,0.08);

    margin-top: 1px;

    padding: 15px;

    min-height: 100vh;

    background: var(--dash-bg);

    transition: all .35s ease;
}

/* =========================================================
DARK MODE VARIABLES
========================================================= */

.AdminDashboard-dark{

    --dash-bg: #020617;
    --dash-card: #0f172a;
    --dash-card2: #111827;
    --dash-text: #f1f5f9;
    --dash-subtext: #94a3b8;
    --dash-border: rgba(255,255,255,0.06);
    --dash-hover: rgba(255,255,255,0.04);
    --dash-shadow: rgba(0,0,0,0.35);

    background: var(--dash-bg);
}

/* =========================================================
SIDEBAR
========================================================= */

.AdminDashboard-sidebar{

    background: linear-gradient(
        180deg,
        var(--dash-card),
        var(--dash-card2)
    );

    border-radius: 24px;

    padding: 15px;

    border: 1px solid var(--dash-border);

    box-shadow:
        0 10px 35px var(--dash-shadow);

    transition: all .35s ease;
}

/* =========================================================
CARD
========================================================= */

.AdminDashboard-card{

    background: linear-gradient(
        145deg,
        var(--dash-card),
        var(--dash-card2)
    );

    border: 1px solid var(--dash-border);

    border-radius: 24px;

    padding: 25px;

    box-shadow:
        0 10px 35px var(--dash-shadow);

    overflow: hidden;

    transition: all .35s ease;
}

/* =========================================================
HEADER
========================================================= */

.AdminDashboard-header{

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 25px;
}

.AdminDashboard-title{

    margin: 0;

    font-size: 28px;

    font-weight: 800;

    color: var(--dash-text);
}

.AdminDashboard-subtitle{

    margin: 0;

    color: var(--dash-subtext);

    font-size: 14px;
}

/* =========================================================
FILTER BOX
========================================================= */

.AdminDashboard-filterBox{

    background: rgba(255,255,255,0.7);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.5);

    padding: 20px;

    border-radius: 20px;

    margin-bottom: 25px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.05);

    transition: all .35s ease;
}

/* DARK */

.AdminDashboard-dark .AdminDashboard-filterBox{

    background: rgba(15,23,42,0.72);

    border-color: rgba(255,255,255,0.05);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

/* =========================================================
LABEL
========================================================= */

.AdminDashboard-label{

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 700;

    color: var(--dash-text);
}

/* =========================================================
FORM SELECT
========================================================= */

.AdminDashboard-filterBox .form-select{

    min-height: 50px;

    border-radius: 14px;

    border: 1px solid var(--dash-border);

    background: rgba(255,255,255,0.85);

    color: var(--dash-text);

    font-weight: 600;

    box-shadow: none;

    transition: all .3s ease;
}

/* DARK */

.AdminDashboard-dark .form-select{

    background: rgba(15,23,42,0.92);

    border-color: rgba(255,255,255,0.08);

    color: #fff;
}

.AdminDashboard-dark .form-select option{

    background: #0f172a;

    color: #fff;
}

/* FOCUS */

.AdminDashboard-filterBox .form-select:focus{

    border-color: var(--dash-primary);

    box-shadow:
        0 0 0 0.2rem rgba(13,110,253,.15);
}

/* =========================================================
BUTTON
========================================================= */

.AdminDashboard-filterBox .btn,
#AdminDashboard-toggleMode{

    border-radius: 14px;

    padding: 11px 18px;

    font-weight: 700;

    transition: all .3s ease;
}

.AdminDashboard-filterBox .btn:hover,
#AdminDashboard-toggleMode:hover{

    transform: translateY(-2px);

    box-shadow:
        0 10px 20px rgba(0,0,0,0.12);
}

/* =========================================================
CHART
========================================================= */

.AdminDashboard-chartWrapper{

    background: rgba(255,255,255,0.7);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border-radius: 22px;

    padding: 20px;

    height: 500px;

    border: 1px solid rgba(255,255,255,0.5);

    box-shadow:
        inset 0 0 10px rgba(0,0,0,0.03);

    transition: all .35s ease;
}

/* DARK */

.AdminDashboard-dark .AdminDashboard-chartWrapper{

    background: rgba(15,23,42,0.72);

    border-color: rgba(255,255,255,0.05);

    box-shadow:
        inset 0 0 15px rgba(255,255,255,0.02);
}

/* =========================================================
ADMIN MEMBER
========================================================= */

.adminmember-container{

    background: linear-gradient(
        180deg,
        var(--dash-card),
        var(--dash-card2)
    );

    border-radius: 24px;

    padding: 20px;

    border: 1px solid var(--dash-border);

    box-shadow:
        0 10px 35px var(--dash-shadow);

    overflow: hidden;

    transition: all .35s ease;
}

/* =========================================================
HEADER
========================================================= */

.adminmember-header{

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 24px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--dash-border);
}

.adminmember-logo{

    width: 56px;

    height: 56px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        var(--dash-primary),
        #3b82f6
    );

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 24px;

    box-shadow:
        0 8px 25px rgba(13,110,253,0.35);
}

.adminmember-title{

    margin: 0;

    font-size: 22px;

    font-weight: 800;

    color: var(--dash-text);
}

.adminmember-subtitle{

    color: var(--dash-subtext);

    font-size: 13px;
}

/* =========================================================
MENU
========================================================= */

.adminmember-menu{

    display: flex;

    flex-direction: column;

    gap: 5px;
}

/* =========================================================
MAIN ITEM
========================================================= */

.adminmember-item{

    position: relative;

    display: flex;

    align-items: center;

    gap: 1px;

    padding: 5px 5px;

    border-radius: 18px;

    text-decoration: none;

    color: var(--dash-text);

    font-weight: 700;

    transition: all .3s ease;

    overflow: hidden;

    border: 1px solid transparent;
}

.adminmember-item:hover{

    background: var(--dash-hover);

    color: var(--dash-primary);

    transform: translateX(4px);
}

.adminmember-item.active{

    background: linear-gradient(
        135deg,
        var(--dash-primary),
        var(--dash-primary2)
    );

    color: #fff !important;

    box-shadow:
        0 10px 25px rgba(37,99,235,0.30);
}

/* =========================================================
ICON
========================================================= */

.adminmember-icon{

    width: 42px;

    height: 42px;

    border-radius: 14px;

    background: rgba(13,110,253,0.10);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #a93b00;

    font-size: 18px;

    transition: all .3s ease;
}

.AdminDashboard-dark .adminmember-icon{

    background: rgba(255,255,255,0.06);

    color: #60a5fa;
}

/* =========================================================
SUBMENU
========================================================= */

.adminmember-submenu{

    position: relative;

    margin-left: 18px;

    margin-top: -2px;

    margin-bottom: 10px;

    padding: 12px;

    border-radius: 18px;

    background: rgba(255,255,255,0.65);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.5);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.05);

    display: flex;

    flex-direction: column;

    gap: 8px;

    overflow: hidden;

    animation: adminmemberDropdown .35s ease;
}

/* DARK */

.AdminDashboard-dark .adminmember-submenu{

    background: rgba(15,23,42,0.72);

    border-color: rgba(255,255,255,0.05);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

/* GARIS */

.adminmember-submenu::before{

    content: "";

    position: absolute;

    left: -12px;

    top: 0;

    width: 3px;

    height: 100%;

    border-radius: 30px;

    background: linear-gradient(
        to bottom,
        var(--dash-primary),
        rgba(13,110,253,0.05)
    );
}

/* =========================================================
SUB ITEM
========================================================= */

.adminmember-subitem{

    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 5px 15px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    background: rgba(255,255,255,0.75);

    color: #475569;

    border: 1px solid transparent;

    transition: all .3s ease;

    overflow: hidden;
}

/* DARK */

.AdminDashboard-dark .adminmember-subitem{

    background: rgba(30,41,59,0.75);

    color: #cbd5e1;
}

/* ICON */

.adminmember-subitem i{

    width: 34px;

    height: 34px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(
        135deg,
        #eff6ff,
        #dbeafe
    );

    color: #2563eb;

    transition: all .3s ease;
}

/* DARK */

.AdminDashboard-dark .adminmember-subitem i{

    background: rgba(255,255,255,0.06);

    color: #60a5fa;
}

/* HOVER */

.adminmember-subitem:hover{

    transform: translateX(6px);

    background: linear-gradient(
        135deg,
        rgba(13,110,253,0.10),
        rgba(59,130,246,0.14)
    );

    color: var(--dash-primary);

    border-color: rgba(13,110,253,0.15);

    box-shadow:
        0 8px 20px rgba(13,110,253,0.08);
}

/* DARK HOVER */

.AdminDashboard-dark .adminmember-subitem:hover{

    background: rgba(37,99,235,0.18);

    color: #fff;
}

/* ICON HOVER */

.adminmember-subitem:hover i{

    background: linear-gradient(
        135deg,
        var(--dash-primary),
        #3b82f6
    );

    color: #fff;

    transform: scale(1.08) rotate(-4deg);
}

/* ACTIVE */

.adminmember-subitem.active{

    background: linear-gradient(
        135deg,
        var(--dash-primary),
        var(--dash-primary2)
    );

    color: #fff !important;

    box-shadow:
        0 10px 25px rgba(37,99,235,0.30);
}

.adminmember-subitem.active i{

    background: rgba(255,255,255,0.18);

    color: #fff;
}

/* =========================================================
SHINE EFFECT
========================================================= */

.adminmember-item::after,
.adminmember-subitem::after{

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 80px;

    height: 100%;

    background: rgba(255,255,255,0.22);

    transform: skewX(-25deg);

    transition: .7s;
}

.adminmember-item:hover::after,
.adminmember-subitem:hover::after{

    left: 140%;
}

/* =========================================================
ANIMATION
========================================================= */

@keyframes adminmemberDropdown{

    from{
        opacity: 0;
        transform: translateY(-8px) scale(.97);
    }

    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

/* =========================================================
SCROLLBAR
========================================================= */

.adminmember-container::-webkit-scrollbar{
    width: 8px;
}

.adminmember-container::-webkit-scrollbar-thumb{

    background: rgba(148,163,184,0.35);

    border-radius: 20px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width: 991px){

    .AdminDashboard-wrapper{
        padding: 12px;
    }

    .AdminDashboard-card{
        padding: 18px;
    }

    .AdminDashboard-title{
        font-size: 22px;
    }

    .AdminDashboard-chartWrapper{
        height: 350px;
        padding: 10px;
    }

    .adminmember-container{
        padding: 16px;
    }

    .adminmember-title{
        font-size: 19px;
    }

    .adminmember-item{
        padding: 12px 14px;
    }

    .adminmember-icon{
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

}

@media(max-width: 576px){

    .adminmember-header{
        gap: 12px;
    }

    .adminmember-title{
        font-size: 18px;
    }

    .adminmember-subtitle{
        font-size: 12px;
    }

    .adminmember-item{
        font-size: 14px;
    }

    .adminmember-subitem{
        font-size: 13px;
    }

}

/* //Profile // */
/* =========================
ADMIN PROFILE
========================= */

.adminProfile{
    position: relative;
}

.adminProfile-card{
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #edf2f7;
}

.adminProfile-header{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf2f7;
}

.adminProfile-avatar{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 40px;
    flex-shrink: 0;
}

.adminProfile-headerContent h2{
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

.adminProfile-headerContent p{
    margin: 5px 0 0;
    color: #64748b;
}

.adminProfile-section{
    background: #f8fafc;
    border-radius: 22px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.adminProfile-sectionTitle{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.adminProfile-label{
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
    display: block;
}

.adminProfile-input{
    border-radius: 16px !important;
    min-height: 52px;
    border: 1px solid #cbd5e1;
    box-shadow: none !important;
    padding-left: 16px;
}

.adminProfile-input:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15) !important;
}

.adminProfile-textarea{
    min-height: 130px;
    padding-top: 14px;
}

.adminProfile-buttonWrap{
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
}

.adminProfile-btn{
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
}

@media(max-width:768px){

    .adminProfile-card{
        padding: 20px;
    }

    .adminProfile-header{
        flex-direction: column;
        text-align: center;
    }

    .adminProfile-headerContent h2{
        font-size: 24px;
    }

    .adminProfile-buttonWrap{
        flex-direction: column;
    }

    .adminProfile-btn{
        width: 100%;
    }

}
/* =========================
DARK MODE ADMIN PROFILE
========================= */

body.dark-mode .adminProfile-card{
    background: #0f172a;
    border-color: #1e293b;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

body.dark-mode .adminProfile-header{
    border-bottom: 1px solid #1e293b;
}

body.dark-mode .adminProfile-headerContent h2{
    color: #f8fafc;
}

body.dark-mode .adminProfile-headerContent p{
    color: #94a3b8;
}

body.dark-mode .adminProfile-section{
    background: #111827;
    border-color: #1f2937;
}

body.dark-mode .adminProfile-sectionTitle{
    color: #f1f5f9;
}

body.dark-mode .adminProfile-label{
    color: #cbd5e1;
}

body.dark-mode .adminProfile-input{
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}

body.dark-mode .adminProfile-input::placeholder{
    color: #94a3b8 !important;
}

body.dark-mode .adminProfile-input:focus{
    background: #1e293b !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
}

body.dark-mode textarea.adminProfile-input{
    background: #1e293b !important;
    color: #f8fafc !important;
}

body.dark-mode .form-select.adminProfile-input{
    background-color: #1e293b !important;
    color: #f8fafc !important;
}

body.dark-mode .bootstrap-select .dropdown-toggle{
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    color: #f8fafc !important;
    border-radius: 16px;
    min-height: 52px;
}

body.dark-mode .bootstrap-select .dropdown-menu{
    background: #0f172a;
    border: 1px solid #1e293b;
}

body.dark-mode .bootstrap-select .dropdown-item{
    color: #e2e8f0;
}

body.dark-mode .bootstrap-select .dropdown-item:hover{
    background: #1e293b;
    color: #ffffff;
}

body.dark-mode .bootstrap-select .bs-searchbox input{
    background: #1e293b;
    border: 1px solid #334155;
    color: #f8fafc;
}

body.dark-mode #result{
    color: #f8fafc;
}

/* =========================
ADMIN FOTO PROFILE
BS5 / BS6 READY
========================= */

.adminFotoProfile{
    position: relative;
}

.adminFotoProfile-card{
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* =========================
HEADER
========================= */

.adminFotoProfile-header{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf2f7;
}

.adminFotoProfile-icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 34px;
    flex-shrink: 0;
}

.adminFotoProfile-headerContent h2{
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.adminFotoProfile-headerContent p{
    margin: 5px 0 0;
    color: #64748b;
}

/* =========================
TAB
========================= */

.adminFotoProfile-tabs{
    gap: 12px;
}

.adminFotoProfile-tabLink{
    border: none !important;
    border-radius: 50px !important;
    padding: 13px 24px !important;
    background: #f1f5f9 !important;
    color: #334155 !important;
    font-weight: 600;
    display: flex !important;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.adminFotoProfile-tabLink:hover{
    background: #dbeafe !important;
    color: #0d6efd !important;
}

.adminFotoProfile-tabLink.active{
    background: linear-gradient(135deg,#0d6efd,#2563eb) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(37,99,235,0.25);
}

/* =========================
BOX
========================= */

.adminFotoProfile-box{
    background: #f8fafc;
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.adminFotoProfile-boxHeader{
    margin-bottom: 20px;
}

.adminFotoProfile-boxHeader h4{
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

/* =========================
DROPBOX
========================= */

.adminFotoProfile-uploadWrap{
    width: 100%;
}

.adminFotoProfile-dropbox{
    border: 2px dashed #94a3b8;
    border-radius: 24px;
    padding: 55px 20px;
    text-align: center;
    background: #ffffff;
    transition: 0.3s ease;
    cursor: pointer;
}

.adminFotoProfile-dropbox:hover{
    border-color: #0d6efd;
    background: #eff6ff;
    transform: translateY(-2px);
}

.adminFotoProfile-dropIcon{
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#2563eb);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.adminFotoProfile-dropbox h5{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.adminFotoProfile-dropbox p{
    margin: 0;
    color: #64748b;
}

.adminFotoProfile-fileInput{
    display: none !important;
}

/* =========================
GALLERY
========================= */

.adminFotoProfile-gallery{
    margin-top: 10px;
}

/* =========================
DARK MODE
========================= */

body.dark-mode .adminFotoProfile-card{
    background: #0f172a;
    border-color: #1e293b;
}

body.dark-mode .adminFotoProfile-header{
    border-bottom: 1px solid #1e293b;
}

body.dark-mode .adminFotoProfile-headerContent h2{
    color: #f8fafc;
}

body.dark-mode .adminFotoProfile-headerContent p{
    color: #94a3b8;
}

body.dark-mode .adminFotoProfile-tabLink{
    background: #1e293b !important;
    color: #e2e8f0 !important;
}

body.dark-mode .adminFotoProfile-tabLink:hover{
    background: #1d4ed8 !important;
    color: #ffffff !important;
}

body.dark-mode .adminFotoProfile-tabLink.active{
    background: linear-gradient(135deg,#2563eb,#3b82f6) !important;
}

body.dark-mode .adminFotoProfile-box{
    background: #111827;
    border-color: #1f2937;
}

body.dark-mode .adminFotoProfile-boxHeader h4{
    color: #f8fafc;
}

body.dark-mode .adminFotoProfile-dropbox{
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .adminFotoProfile-dropbox:hover{
    background: #172554;
}

body.dark-mode .adminFotoProfile-dropbox h5{
    color: #f8fafc;
}

body.dark-mode .adminFotoProfile-dropbox p{
    color: #94a3b8;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .adminFotoProfile-card{
        padding: 20px;
    }

    .adminFotoProfile-header{
        flex-direction: column;
        text-align: center;
    }

    .adminFotoProfile-headerContent h2{
        font-size: 24px;
    }

    .adminFotoProfile-tabs{
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .adminFotoProfile-tabLink{
        white-space: nowrap;
    }

    .adminFotoProfile-dropbox{
        padding: 40px 15px;
    }

}
/* =======// Admin bank ===========// */
/* =========================================
ADMIN BANK - BOOTSTRAP 5.3
========================================= */

.AdminBank-wrapper{
    width: 100%;
    position: relative;
}

/* CARD */
.AdminBank-card{
    background: #ffffff;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid #edf1f7;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* HEADER */
.AdminBank-header{
    margin-bottom: 25px;
}

.AdminBank-title{
    font-size: 1.45rem;
    font-weight: 700;
    color: #212529;
}

.AdminBank-subtitle{
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 5px;
}

/* TABLE */
.AdminBank-table{
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.AdminBank-table thead th{
    background: #f8fafc;
    color: #495057;
    font-weight: 700;
    border: none;
    padding: 16px;
    white-space: nowrap;
    vertical-align: middle;
}

.AdminBank-table thead th:first-child{
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.AdminBank-table thead th:last-child{
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.AdminBank-table tbody tr{
    background: #ffffff;
    transition: all .3s ease;
}

.AdminBank-table tbody tr:hover{
    transform: translateY(-2px);
}

.AdminBank-table tbody td{
    padding: 16px;
    border-top: 1px solid #edf1f7;
    border-bottom: 1px solid #edf1f7;
    vertical-align: middle;
    background: #fff;
}

.AdminBank-table tbody td:first-child{
    border-left: 1px solid #edf1f7;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.AdminBank-table tbody td:last-child{
    border-right: 1px solid #edf1f7;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

/* INPUT */
.AdminBank-input,
.AdminBank-select{
    height: 52px;
    border-radius: 16px;
    border: 1px solid #dfe5ec;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    box-shadow: none !important;
    transition: all .25s ease;
}

.AdminBank-input:focus,
.AdminBank-select:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 .18rem rgba(13,110,253,.12) !important;
}

/* BUTTON */
.AdminBank-action{
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 28px;
    flex-wrap: wrap;
}

.AdminBank-btn-reset,
.AdminBank-btn-save{
    border: none;
    border-radius: 16px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all .3s ease;
}

.AdminBank-btn-reset{
    background: #ffc107;
    color: #212529;
}

.AdminBank-btn-reset:hover{
    background: #ffca2c;
    transform: translateY(-1px);
}

.AdminBank-btn-save{
    background: linear-gradient(135deg,#198754,#20c997);
    color: #fff;
}

.AdminBank-btn-save:hover{
    background: linear-gradient(135deg,#157347,#1aa179);
    color: #fff;
    transform: translateY(-1px);
}

/* SELECT PICKER FIX */
.AdminBank-wrapper .bootstrap-select{
    width: 100% !important;
}

.AdminBank-wrapper .bootstrap-select .dropdown-toggle{
    height: 52px;
    border-radius: 16px !important;
    border: 1px solid #dfe5ec !important;
    background: #fff !important;
    padding-left: 15px !important;
    font-size: 14px;
}

.AdminBank-wrapper .bootstrap-select .dropdown-toggle:focus{
    outline: none !important;
    box-shadow: 0 0 0 .18rem rgba(13,110,253,.12) !important;
}

/* MOBILE */
@media (max-width: 768px){

    .AdminBank-card{
        padding: 18px;
        border-radius: 22px;
    }

    .AdminBank-title{
        font-size: 1.15rem;
    }

    .AdminBank-subtitle{
        font-size: 0.85rem;
    }

    .AdminBank-table thead{
        display: none;
    }

    .AdminBank-table,
    .AdminBank-table tbody,
    .AdminBank-table tr,
    .AdminBank-table td{
        display: block;
        width: 100%;
    }

    .AdminBank-table tbody tr{
        margin-bottom: 16px;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid #edf1f7;
        box-shadow: 0 5px 18px rgba(0,0,0,0.04);
    }

    .AdminBank-table tbody td{
        border: none !important;
        border-bottom: 1px solid #f1f3f5 !important;
        border-radius: 0 !important;
        padding: 14px;
    }

    .AdminBank-table tbody td:last-child{
        border-bottom: none !important;
    }

    .AdminBank-action{
        justify-content: stretch;
    }

    .AdminBank-btn-reset,
    .AdminBank-btn-save{
        width: 100%;
    }

}
/* =========================================
PASSWORD ADMIN - BOOTSTRAP 5.3
========================================= */

.PasswordAdmin-wrapper{
    width: 100%;
    position: relative;
}

/* CARD */
.PasswordAdmin-card{
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    border: 1px solid #edf1f7;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
}

/* HEADER */
.PasswordAdmin-header{
    margin-bottom: 28px;
}

.PasswordAdmin-title{
    font-size: 1.55rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
}

.PasswordAdmin-subtitle{
    color: #6c757d;
    font-size: 0.95rem;
}

/* LABEL */
.PasswordAdmin-label{
    display: block;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
    font-size: 14px;
}

.PasswordAdmin-required{
    color: #dc3545;
}

/* INPUT GROUP */
.PasswordAdmin-input-group{
    position: relative;
}

/* INPUT */
.PasswordAdmin-input{
    height: 56px;
    border-radius: 18px;
    border: 1px solid #dfe5ec;
    padding-left: 18px;
    padding-right: 55px;
    font-size: 14px;
    box-shadow: none !important;
    transition: all .25s ease;
    background: #fff;
}

.PasswordAdmin-input:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 0 .20rem rgba(13,110,253,.12) !important;
}

/* TOGGLE BUTTON */
.PasswordAdmin-toggle{
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: #6c757d;
    transition: all .25s ease;
}

.PasswordAdmin-toggle:hover{
    background: #f1f3f5;
    color: #212529;
}

/* ACTION */
.PasswordAdmin-action{
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

/* BUTTON */
.PasswordAdmin-btn-save{
    border: none;
    border-radius: 18px;
    padding: 14px 28px;
    font-weight: 600;
    background: linear-gradient(135deg,#198754,#20c997);
    color: #fff;
    transition: all .3s ease;
}

.PasswordAdmin-btn-save:hover{
    background: linear-gradient(135deg,#157347,#1aa179);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(25,135,84,.18);
}

/* MOBILE */
@media (max-width: 768px){

    .PasswordAdmin-card{
        padding: 20px;
        border-radius: 22px;
    }

    .PasswordAdmin-title{
        font-size: 1.25rem;
    }

    .PasswordAdmin-subtitle{
        font-size: 0.88rem;
    }

    .PasswordAdmin-input{
        height: 52px;
        border-radius: 16px;
    }

    .PasswordAdmin-btn-save{
        width: 100%;
    }

    .PasswordAdmin-action{
        justify-content: stretch;
    }

}