/* ==========================================
   BANK SAMPAH DIGITAL
   STYLE.CSS
   ========================================== */

/* ==========================================
   GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   GLOBAL
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#333;
    overflow-x:hidden;
    padding-top:0;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    padding:70px 0;
}

.container{
    max-width:1320px;
}

/* ==========================================
   NAVBAR
========================================== */

.home-navbar{
    background:#fff;
    height:75px;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    border-bottom:1px solid #eef2f3;

    display:flex;
    align-items:center;
}

.home-navbar .container{
    position: relative;
    top: -8px;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.logo-text h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#16a34a;
}

.logo-text span{
    font-size:13px;
    color:#555;
    font-weight:500;
}

.navbar-nav{
    gap:28px;
}

.nav-link{
    font-size:16px;
    font-weight:600;
}

.nav-link{
    color:#222 !important;
    font-weight:500;
     transition:.3s;
}

.home-navbar .nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:3px;
    background:#16a34a;
}

.home-navbar .nav-link.active{
    color:#16a34a !important;
    position:relative;
}

.navbar-btn{
    display:flex;
    gap:12px;
}

.btn-login{
    padding:10px 24px;
    border:2px solid #16a34a;
    border-radius:12px;
    color:#16a34a;
    font-weight:600;
    transition:.3s;
}

.btn-login:hover{
    background:#16a34a;
    color:#fff;
}

.btn-register{
    padding:10px 24px;
    background:#16a34a;
    border-radius:12px;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.btn-register:hover{
    background:#15803d;
    color:#fff;
}

/* ===========================
        HERO SECTION
=========================== */

.hero-section{
    min-height:650px;
    padding:40px 0 120px;
}

.hero-section .row{
    min-height:auto;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-title{
    font-size:60px;
    font-weight:800;
    line-height:1.15;
    color:#222;
    margin-bottom:25px;
}

.hero-title span{
    color:#16a34a;
}

.hero-text{
    max-width:500px;
    color:#666;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}
.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:40px;
}

.hero-btn{
    height:58px;
    padding:0 30px;
    border-radius:14px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-image{
    background:transparent;
    padding:0;
    border-radius:0;
    box-shadow:none;
}

.hero-mask{
    width:100%;
    height:100%;
    display:block;
}

.hero-card{
    background:#fff;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);

    margin-top:25px;

    padding:35px 15px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:10px;
}

.stat-item{
    flex:1;
    text-align:center;
    padding:0 20px;
}

.stat-item:not(:last-child){
    border-right:1px solid #e9ecef;
}

.stat-item i{
    width:60px;
    height:60px;
    margin:0 auto 15px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#EAF8EE;
    border-radius:50%;

    font-size:28px;
    color:#16a34a;
}

.stat-item h5{
    margin-bottom:8px;
    font-size:34px;
    font-weight:700;
    color:#198754;
}

.stat-item span{
    display:block;
    font-size:18px;
    color:#6c757d;
}

.hero-image-wrapper{
    background:transparent;
    padding:0;
    border:none;
    box-shadow:none;
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}

.hero-img{
    width:100%;
    max-width:600px;
    height:auto;
    object-fit:contain;
    border-radius:0;
    margin:auto;
}

/* ==========================================
            FEATURE SECTION
========================================== */

.feature-section{
    margin-top:-40px;
    margin-bottom:70px;
    position:relative;
    z-index:10;
}

.feature-box{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:10px;
    height:100%;
}

.feature-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:#198754;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.feature-content h5{
    margin-bottom:6px;
    font-size:20px;
    font-weight:700;
}

.feature-content p{
    margin:0;
    color:#6c757d;
    font-size:15px;
    line-height:1.6;
}

@media(min-width:992px){
    .border-end{
        border-color:#e9ecef !important;
    }
}

/* ==========================================
   CARA KERJA
========================================== */

.cara-kerja{
    padding: 10px 0 80px;
    margin-top: -30px;
}

.cara-kerja h2{
    font-size:42px;
    font-weight:700;
    color:#222;
}

.cara-kerja .text-muted{
    font-size:17px;
    color:#666 !important;
    margin-top:10px;
}

/* Card */

.step-card{
    position:relative;
    padding:25px 20px;
    transition:.3s;
}

.step-card:hover{
    transform:translateY(-10px);
}

/* Icon */

.step-icon{
    width:95px;
    height:95px;
    margin:auto;
    border-radius:50%;
    background:#e9f8ef;
    color:#16a34a;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    transition:.3s;
}

.step-card:hover .step-icon{
    background:#16a34a;
    color:#fff;
    transform:rotate(-8deg);
}

/* Nomor */

.step-number{
    width:40px;
    height:40px;
    margin:22px auto;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    box-shadow:0 10px 20px rgba(22,163,74,.25);
}

/* Judul */

.step-card h5{
    margin-bottom:12px;
    font-size:22px;
    font-weight:700;
    color:#222;
}

.step-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}

/* Garis Penghubung */

.step-card::after{
    content:"";
    position:absolute;
    top:48px;
    right:-58px;
    width:116px;
    border-top:3px dashed #d7d7d7;
}

.step-card:last-child::after{
    display:none;
}

.step-card:hover::after{
    border-color:#16a34a;
}

/* Hover Text */

.step-card:hover h5{
    color:#16a34a;
}

.step-card:hover{
    background:#fcfffd;
    border-radius:20px;
}

/* ==========================================
   BUTTON
========================================== */

.btn{
    border-radius:14px;
    padding:12px 28px;
    font-weight:600;
    transition:.3s;
}

.btn-success{
    background:#16a34a;
    border:none;
}

.btn-success:hover{
    background:#15803d;
    transform:translateY(-2px);
}

.btn-outline-success{
    border:2px solid #16a34a;
    color:#16a34a;
    background:#fff;
}

.btn-outline-success:hover{
    background:#16a34a;
    color:#fff;
}

/* ==========================================
   CARD
========================================== */

.card{
    border:none;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.card-body{
    padding:30px;
}

.card-title{
    font-weight:700;
}

.card-text{
    color:#666;
    line-height:1.8;
}

/* Feature Card */

.feature-card{
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card i{
    font-size:48px;
    color:#16a34a;
    margin-bottom:18px;
}

.feature-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    line-height:1.8;
}

/* ==========================================
   FOOTER
========================================== */

footer{
    margin-top:100px;
    background:#16a34a;
    color:#fff;
}

.footer-top{
    padding:70px 0 40px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.footer-logo img{
    width:65px;
}

.footer-logo h4{
    margin:0;
    font-weight:700;
}

.footer-logo p{
    margin:0;
    opacity:.9;
}

.footer-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-link{
    display:block;
    color:#fff;
    margin-bottom:12px;
    transition:.3s;
}

.footer-link:hover{
    padding-left:8px;
    color:#fff;
}

.footer-contact i{
    width:28px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding:20px 0;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    opacity:.9;
}

/* Tablet */

@media (max-width:992px){

.hero-section{
    padding:40px 0 70px;
}

.hero-title{
    font-size:48px;
}

.hero-text{
    max-width:100%;
}

.hero-image{
    position:relative;
    width:100%;
    height:620px;
    overflow:visible;
}

.hero-img{
    height:auto;
}

.hero-buttons{
    flex-wrap:wrap;
}

.hero-btn{
    width:100%;
}

}

/* HP */

@media(max-width:768px){

.hero-title{
    font-size:38px;
}

.hero-text{
    font-size:16px;
}

}

/* HP kecil */

@media(max-width:576px){

.hero-section{
    padding-top:25px;
}

.hero-title{
    font-size:32px;
}

.hero-badge{
    font-size:13px;
}

.hero-buttons{
    flex-direction:column;
}

.hero-btn{
    width:100%;
}

}

/* ===========================
   INPUT GROUP
=========================== */

.input-group{
    margin-bottom:5px;
}

.input-group-text{

    width:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    border:1px solid #ddd;

    border-radius:14px 0 0 14px;

}

.form-control{

    height:56px;

    border-radius:0 14px 14px 0;

    border:1px solid #ddd;

    padding-left:15px;

}

.form-control:focus{

    border-color:#16a34a;

    box-shadow:0 0 0 .15rem rgba(22,163,74,.15);

}

/* ===========================
   BUTTON REGISTER
=========================== */

.register-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#16a34a,#22c55e);

    color:#fff;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.register-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(22,163,74,.25);

}

/* ===========================
   GOOGLE BUTTON
=========================== */

.google-btn{

    width:100%;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    background:#fff;

    border:1px solid #ddd;

    border-radius:14px;

    transition:.3s;

    font-weight:600;

}

.google-btn:hover{

    background:#f8f8f8;

}

.google-btn img{

    width:22px;

}

/* ===========================
   LOGIN LINK
=========================== */

.login-link{

    text-align:center;

    margin-top:25px;

    color:#666;

}

.login-link a{

    color:#16a34a;

    text-decoration:none;

    font-weight:600;

}

/* ===========================
   ERROR
=========================== */

.text-danger{

    font-size:13px;

}

/* ================= Dashboard ================= */

.dashboard-card{
    transition: all .3s ease;
    cursor: pointer;
}

.dashboard-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12)!important;
}

.quick-menu{
    transition:.3s;
    cursor:pointer;
}

.quick-menu:hover{
    transform:translateY(-5px);
    background:#f8f9fa;
    box-shadow:0 12px 30px rgba(0,0,0,.1);
}

.card{
    transition:.3s;
}

.card:hover{
    box-shadow:0 15px 35px rgba(0,0,0,.08)!important;
}

/* ========================================
            FAQ MODERN
======================================== */

.faq-section{
    padding:90px 0;
    background:linear-gradient(180deg,#f5fcf7,#ffffff);
    position:relative;
    overflow:hidden;
}

.faq-section::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:#dff6e8;
    border-radius:50%;
    left:-120px;
    bottom:-120px;
    opacity:.5;
}

.faq-section::after{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    background:#dff6e8;
    border-radius:50%;
    right:-90px;
    top:120px;
    opacity:.4;
}

.faq-badge{
    display:inline-block;
    background:#dff6e8;
    color:#198754;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
}

.faq-title{
    font-size:48px;
    font-weight:800;
    margin-top:18px;
}

.faq-title span{
    color:#1fa84a;
}

.faq-subtitle{
    color:#777;
    font-size:17px;
    margin-top:10px;
    margin-bottom:50px;
}

.custom-faq{
    max-width:1000px;
    margin:auto;
}

.custom-faq .accordion-item{
    border:none !important;
    border-radius:22px !important;
    overflow:hidden;
    margin-bottom:20px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.custom-faq .accordion-item:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.custom-faq .accordion-button{
    background:#fff !important;
    color:#222 !important;
    padding:22px 25px;
    font-size:20px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:18px;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#eefbf2 !important;
    color:#198754 !important;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-button::after{
    background-size:18px;
}

.custom-faq .accordion-body{
    background:#fff;
    padding:22px 95px;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

.faq-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#e8f9ef;
    color:#198754;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}

/* ==============================
        DASHBOARD NAVBAR
============================== */

.top-navbar{
    height:80px;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
    border-bottom:1px solid #e9ecef;
    position:sticky;
    top:0;
    z-index:999;
}

.top-navbar h4{
    font-size:22px;
    font-weight:700;
}

.top-navbar small{
    color:#6c757d;
}

.top-navbar .btn-light{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:none;
    background:#f8f9fa;
}

.top-navbar .btn-light:hover{
    background:#198754;
    color:#fff;
}

.top-navbar img{
    object-fit:cover;
}

/* ===================================
        DASHBOARD LAYOUT
=================================== */

.wrapper{
    display:flex;
    min-height:100vh;
    overflow:hidden;
}

/* Sidebar */

.sidebar{
    position:fixed;
    top:0;
    left:0;
    width:280px;
    height:100vh;
    background:#fff;
    border-right:1px solid #ececec;
    overflow-y:auto;
    transition:left .35s ease;
    z-index:1000;
}

.sidebar.hide{
    left:-280px;
}

/* Content */

.content{
    margin-left:280px;
    width:calc(100% - 280px);
    transition:.35s ease;
}

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

/* Navbar */

.top-navbar{
    position:sticky;
    top:0;
    left:0;
    right:0;
    height:80px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
    border-bottom:1px solid #ececec;
    z-index:999;
}

/* Isi dashboard */

.content .container-fluid{
    padding:30px !important;
}

/*==========================
        SIDEBAR MODERN
==========================*/

.sidebar{
    width:280px;
    height:100vh;
    background:#fff;
    border-right:1px solid #e9ecef;
    transition:.35s;
    overflow-y:auto;
}

.sidebar-header{
    padding:28px 25px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:55px;
    height:55px;
}

.logo-text h5{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#16a34a;
}

.logo-text span{
    color:#777;
    font-size:14px;
}

.sidebar-menu{
    list-style:none;
    padding:15px;
    margin:0;
}

.sidebar-menu li{
    margin-bottom:8px;
}

.sidebar-menu li a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:#444;
    padding:14px 18px;
    border-radius:14px;
    transition:.3s;
    font-weight:500;
}

.sidebar-menu li a:hover{
    background:#eefaf2;
    color:#16a34a;
}

.sidebar-menu li.active a{
    background:#16a34a;
    color:#fff;
}

.sidebar-menu i{
    font-size:20px;
    width:25px;
    text-align:center;
}

.sidebar-banner{
    padding:20px;
}

.banner-card{
    background:linear-gradient(135deg,#16a34a,#22c55e);
    border-radius:18px;
    color:#fff;
    padding:20px;
    text-align:center;
}

.banner-card img{
    width:120px;
    margin-top:15px;
}

.banner-card h6{
    font-weight:700;
    margin-bottom:10px;
}

.banner-card p{
    font-size:13px;
    opacity:.95;
}

/*==================================
        SIDEBAR VERSI MINIMALIS
==================================*/

.sidebar{
    width:280px;
    background:#fff;
    border-right:1px solid #ececec;
    box-shadow:0 0 20px rgba(0,0,0,.04);
    transition:.3s;
}

.sidebar > .p-4 > .d-flex > img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.sidebar h4{
    font-size:24px;
    font-weight:700;
    color:#169c4a;
    margin-bottom:0;
    line-height:1.2;
}

.sidebar small{
    color:#777;
    font-size:15px;
}

/* =========================
        MENU SIDEBAR
========================= */

.menu-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:12px 16px;
    margin-bottom:4px;
    border-radius:12px;
    color:#2f3542 !important;
    font-size:15px;
    font-weight:500;
    text-decoration:none;
    transition:all .3s ease;
}

.menu-item i{
    width:22px;
    font-size:18px;
    text-align:center;
}

/* Hover */

.menu-item:hover{
    background:#f3f7f4;
    color:#16a34a !important;
}

/* Menu Aktif */

.menu-item.active{
    background:#16a34a !important;
    color:#fff !important;
    border-radius:12px;
    box-shadow:none !important;
}

.menu-item.active i{
    color:#fff !important;
}

.menu-item.active span{
    color:#fff !important;
}

/*=========================
        NAVBAR
=========================*/

.top-navbar{
    height:80px;
    background:#fff;
    border-bottom:1px solid #ececec;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
}

.navbar-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.menu-toggle{
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#f4f5f7;
    transition:.3s;
}

.menu-toggle:hover{
    background:#16a34a;
    color:#fff;
}

.menu-toggle i{
    font-size:22px;
}

.welcome-text h4{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.welcome-text small{
    color:#777;
    font-size:14px;
}

.navbar-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.notification-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#f5f6f8;
    transition:.3s;
}

.notification-btn:hover{
    background:#16a34a;
    color:#fff;
}

.notification-btn i{
    font-size:20px;
}

.profile-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.profile-box img{
    width:50px;
    height:50px;
    border-radius:50%;
    border:3px solid #16a34a;
    object-fit:cover;
}

.profile-box strong{
    display:block;
    font-size:15px;
}

.profile-box small{
    color:#888;
}

/* Sidebar tidak boleh punya garis bawah */
.sidebar .nav-link::before,
.sidebar .nav-link::after,
.sidebar .nav-link.active::before,
.sidebar .nav-link.active::after{
    display:none !important;
    content:none !important;
}

/* ==================================================
   SETOR SAMPAH
================================================== */

.setor-card{
    border:none;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.setor-card:hover{
    transform:translateY(-4px);
}

.summary-card{
    border:none;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.summary-card:hover{
    transform:translateY(-5px);
}

.summary-green{
    background:linear-gradient(135deg,#eaf9ef,#f8fffb);
    border-radius:18px;
}

.page-title{
    font-size:38px;
    font-weight:700;
}

.page-subtitle{
    color:#777;
}

.form-control,
.form-select{
    border-radius:14px;
    height:50px;
}

textarea.form-control{
    height:100px;
}

.btn-success{
    border-radius:14px;
}

.step-card-dashboard{
    border-radius:20px;
    padding:20px;
}

/* ================= RIWAYAT TRANSAKSI ================= */

.table thead th{
    border: none;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 15px;
}

.table tbody td{
    padding: 18px 8px;
    vertical-align: middle;
    border-color: #edf2f7;
}

.table tbody tr{
    transition: .3s;
}

.table tbody tr:hover{
    background: #f8fafc;
}

.table tbody td:last-child{
    color: #198754;
    font-weight: 700;
}

.badge{
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 14px;
}

/* Card Riwayat */

.card-riwayat{
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.card-riwayat .card-body{
    padding: 28px;
}

/* =========================================
   TOGGLE SIDEBAR
========================================= */

.sidebar{
    transition: all .35s ease;
}

.content{
    transition: all .35s ease;
}

/* Desktop */
.sidebar.hide{
    transform: translateX(-100%);
}

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

/* Mobile */
@media (max-width:991px){

    .sidebar{
        transform: translateX(-100%);
    }

    .sidebar.show{
        transform: translateX(0);
    }

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

}

/* ===========================
   LOGO SIDEBAR ADMIN
=========================== */

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px !important;
}

.logo-area img{
    width:50px !important;
    height:50px !important;
    object-fit:contain;
}

.logo-area h5{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#198754;
    line-height:1.2;
}

.logo-area small{
    display:block;
    font-size:15px;
    color:#777;
}

.logo-area .badge{
    margin-top:10px;
}

.icon-circle{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.card{
    transition:.3s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

/* ===== RIWAYAT TRANSAKSI ===== */

.icon-circle{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.card{
    transition:.3s ease;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.table thead{
    background:#198754;
    color:#fff;
}

.table thead th{
    border:none;
    padding:16px;
    font-weight:600;
}

.table tbody td{
    padding:18px 16px;
    vertical-align:middle;
}

.table tbody tr:hover{
    background:#f8fff9;
}

.badge{
    font-size:13px;
    font-weight:600;
}

.btn.rounded-circle{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.input-group-text{
    border-radius:12px 0 0 12px;
}

.form-control{
    border-radius:0 12px 12px 0;
}

.form-select{
    border-radius:12px;
}

/* =========================================
   USER LAYOUT: SIDEBAR & MAIN CONTENT
========================================= */

.user-wrapper {
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

.user-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 280px;
    min-width: 280px;
    height: 100vh;
    overflow-y: auto;
    z-index: 1030;
    transform: translateX(0);
    transition: transform .35s ease;
}

.user-sidebar > .p-4 {
    display: block !important;
    width: 100%;
}

.user-sidebar .nav {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.user-content {
    width: calc(100% - 280px);
    min-width: 0;
    min-height: 100vh;
    margin-left: 280px;
    transition: margin-left .35s ease, width .35s ease;
}

.user-sidebar.hide {
    left: 0;
    transform: translateX(-100%);
}

.user-content.full {
    width: 100%;
    margin-left: 0 !important;
}

@media (max-width: 991.98px) {
    .user-sidebar {
        transform: translateX(-100%);
    }

    .user-sidebar.show {
        transform: translateX(0);
    }

    .user-content,
    .user-content.full {
        width: 100%;
        margin-left: 0 !important;
    }
}
