body{
    background:#f5f7fb;
    font-family: Arial, Helvetica, sans-serif;
    color:#1f2937;
}

a{
    text-decoration:none;
}

.login-wrap{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.login-card{
    width:100%;
    max-width:430px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(15, 23, 42, 0.08);
    padding:30px;
    border:1px solid #e5e7eb;
}

.login-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}

.login-subtitle{
    color:#6b7280;
    margin-bottom:24px;
}

.admin-layout{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:260px;
    background:#111827;
    color:#fff;
    flex-shrink:0;
    padding:22px 16px;
}

.brand{
    font-size:20px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:24px;
}

.brand small{
    display:block;
    font-size:12px;
    color:#9ca3af;
    font-weight:400;
    margin-top:4px;
}

.menu-title{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#9ca3af;
    margin:20px 10px 10px;
}

.sidebar-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-menu li{
    margin-bottom:6px;
}

.sidebar-menu a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#e5e7eb;
    padding:11px 12px;
    border-radius:12px;
    transition:.2s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active{
    background:#1f2937;
    color:#fff;
}

.main-content{
    flex:1;
    min-width:0;
}

.topbar{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    padding:14px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.page-content{
    padding:24px;
}

.dashboard-card,
.content-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 30px rgba(15, 23, 42, 0.06);
    border:1px solid #edf0f5;
    height:100%;
}

.stat-number{
    font-size:28px;
    font-weight:700;
    margin:0;
}

.stat-label{
    color:#6b7280;
    margin:0;
}

.section-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:4px;
}

.section-subtitle{
    color:#6b7280;
    margin-bottom:0;
}

.table thead th{
    background:#f9fafb;
    font-size:14px;
    color:#374151;
    border-bottom:1px solid #e5e7eb;
}

.table td{
    vertical-align:middle;
}

.form-label{
    font-weight:600;
    color:#374151;
}

.btn-soft-danger{
    background:#fee2e2;
    color:#b91c1c;
    border:none;
}

.btn-soft-danger:hover{
    background:#fecaca;
    color:#991b1b;
}

.badge-soft{
    background:#eef2ff;
    color:#4338ca;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
}

@media (max-width: 991.98px){
    .admin-layout{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

    .topbar{
        padding:14px 16px;
    }

    .page-content{
        padding:16px;
    }
}

.table td small{
    line-height:1.4;
}

.form-check-input{
    cursor:pointer;
}

.form-check-label{
    cursor:pointer;
}

.sticky-card{
    position:sticky;
    top:20px;
}

.product-meta{
    font-size:13px;
    color:#6b7280;
}

.badge-status{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    background:#eff6ff;
    color:#1d4ed8;
}

.badge-success-soft{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    background:#ecfdf5;
    color:#047857;
}

.badge-warning-soft{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    background:#fff7ed;
    color:#c2410c;
}

.badge-danger-soft{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    background:#fef2f2;
    color:#b91c1c;
}

.inline-total{
    font-weight:700;
    color:#111827;
}

.table-input{
    min-width:120px;
}

.page-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.summary-box{
    background:#f9fafb;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:16px;
}

.summary-box h6{
    margin-bottom:10px;
    font-weight:700;
}

.info-list{
    margin:0;
    padding:0;
    list-style:none;
}

.info-list li{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:8px 0;
    border-bottom:1px dashed #e5e7eb;
}

.info-list li:last-child{
    border-bottom:none;
}