body{
    margin:0;
    background:#eef3f8;
    font-family:Segoe UI,Tahoma,sans-serif;
}

.sidebar{
    position:fixed;
    left:0;
    top:0;
    width:240px;
    height:100vh;
    background:#fff;
    border-right:1px solid #ddd;
    overflow:auto;
}

.logo{
    text-align:center;
    padding:30px 20px;
}

.logo i{
    font-size:45px;
    color:#2563eb;
    margin-bottom:10px;
}

.logo h3{
    margin:0;
    font-weight:bold;
    color:#2563eb;
}

.menu{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.menu li{
    margin:8px 15px;
}

.menu a{
    display:block;
    padding:14px 16px;
    border-radius:12px;
    text-decoration:none;
    color:#444;
    font-weight:600;
    transition:.2s;
}

.menu a i{
    width:24px;
}

.menu a:hover,
.menu a.active{
    background:#2563eb;
    color:#fff;
}

.content{
    margin-left:240px;
    padding:30px;
}

.card{
    border:none;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stat-card{
    transition:.2s;
}

.stat-card:hover{
    transform:translateY(-3px);
}

.stat-icon{
    font-size:34px;
    margin-bottom:10px;
}

.bulk-card{
    margin-top:25px;
}

.list-panel{
    max-height:600px;
    overflow:auto;
}

.short-code{
    font-weight:bold;
    color:#2563eb;
}

.click{
    background:#edf2ff;
    padding:4px 8px;
    border-radius:8px;
    font-size:12px;
}

.badge-shopee{
    background:#ee4d2d;
}

.badge-lainnya{
    background:#2563eb;
}

.table td{
    vertical-align:middle;
}

.btn-copy{
    margin-right:5px;
}

textarea{
    resize:none;
}

/* ===========================
   Responsive
=========================== */

.toggle-sidebar{
    display:none;
}

@media (max-width:768px){

    .sidebar{
        position: fixed;
        top: 0;
        left: -240px;
        width: 240px;
        height: 100vh;
        background: #fff;
        z-index: 999999;
        transition: .3s;
    }

    .sidebar.show{
        left: 0;
    }

    /* saat sidebar terbuka */
    .content.shift{
        margin-left: 240px;
        transition: .3s;
    }

}