body{
    background:#f4f6f9;
    overflow-x:hidden;
}

.wrapper{
    display:flex;
}

.sidebar{
    width:250px;
    min-height:100vh;
    background:#012C66;
    color:white;
}

.sidebar .logo{
    padding:20px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.2);
}

.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:15px 20px;
    transition:.3s;
}

.sidebar a:hover{
    background:rgba(255,255,255,.15);
}

.content{
    flex:1;
    padding:25px;
}

.card{
    border:none;
    border-radius:15px;
}

.table{
    margin-bottom:0;
}
.card{
    border:none;
    border-radius:12px;
}

.card-header{
    border-bottom:1px solid #e9ecef;
}

.table thead th{
    background:#f8f9fa;
    font-weight:600;
}

.btn-group .btn{
    min-width:40px;
}
.dashboard-card{
    transition:.3s;
}

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

.dashboard-card h3{
    margin:0;
    font-weight:700;
}