*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#eef2f7;
}

.wrapper{
    display:flex;
    min-height:100vh;
}

/* ===========================
   SIDEBAR
=========================== */

.sidebar{

    width:260px;

    background:linear-gradient(180deg,#0f172a,#1e3a8a);

    color:#fff;

    padding:30px 20px;

    position:fixed;

    left:0;
    top:0;
    bottom:0;

}

.logo{

    text-align:center;

    margin-bottom:40px;

}

.logo h3{

    font-size:28px;

    font-weight:bold;

    margin-bottom:5px;

}

.logo span{

    font-size:13px;

    color:#cbd5e1;

}

.sidebar ul{

    list-style:none;

}

.sidebar ul li{

    padding:16px 18px;

    border-radius:10px;

    margin-bottom:10px;

    cursor:pointer;

    transition:.3s;

    font-size:16px;

}

.sidebar ul li:hover{

    background:rgba(255,255,255,.12);

}

.sidebar ul li.active{

    background:#2563eb;

}

.sidebar ul li i{

    margin-right:12px;

}

/* ===========================
   CONTENT
=========================== */

.content{

    margin-left:260px;

    width:100%;

    padding:35px;

}

.topbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.topbar h2{

    font-weight:bold;

    margin-bottom:5px;

}

.topbar small{

    color:#666;

}

/* ===========================
   CARDS
=========================== */

.dashboard-card{

    background:#fff;

    border-radius:18px;

    padding:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.dashboard-card:hover{

    transform:translateY(-6px);

}

.dashboard-card h2{

    margin-top:10px;

    font-size:34px;

    font-weight:bold;

}

.dashboard-card small{

    color:#777;

}

.card-icon{

    font-size:48px;

    color:#2563eb;

}

.green .card-icon{

    color:#16a34a;

}

.orange .card-icon{

    color:#ea580c;

}

.red .card-icon{

    color:#dc2626;

}

/* ===========================
   CHARTS
=========================== */

.chart-card{

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    margin-bottom:25px;

}

.chart-card h5{

    margin-bottom:25px;

    font-weight:bold;

}

/* ===========================
   TABLE
=========================== */

.table-card{

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.table{

    margin-bottom:0;

}

.table thead{

    background:#f8fafc;

}

.table th{

    font-size:14px;

}

.table td{

    vertical-align:middle;

}

/* ===========================
   BADGES
=========================== */

.badge{

    padding:8px 14px;

    font-size:13px;

    border-radius:20px;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.sidebar{

    width:90px;

}

.logo span{

    display:none;

}

.logo h3{

    font-size:18px;

}

.sidebar ul li{

    text-align:center;

}

.sidebar ul li i{

    margin-right:0;

    display:block;

    margin-bottom:6px;

}

.content{

    margin-left:90px;

}

}

@media(max-width:768px){

.content{

    padding:20px;

}

.topbar{

    flex-direction:column;

    align-items:flex-start;

    gap:15px;

}

}