*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f3f4f6;
}

/*
|--------------------------------------------------------------------------
| SIDEBAR
|--------------------------------------------------------------------------
*/

.sidebar{
    background:#111827;
    min-height:100vh;
    padding:20px;
}

.sidebar h4{
    color:white;
    font-weight:700;
    margin-bottom:30px;
}

.sidebar .nav-link{
    color:#d1d5db;
    padding:12px 15px;
    border-radius:12px;
    margin-bottom:10px;
    transition:0.3s;
    font-weight:500;
}

.sidebar .nav-link:hover{
    background:#1f2937;
    color:white;
    transform:translateX(5px);
}

.sidebar .nav-link.active{
    background:#2563eb;
    color:white;
}

.sidebar .nav-link i{
    margin-right:10px;
}

/*
|--------------------------------------------------------------------------
| CONTENT
|--------------------------------------------------------------------------
*/

.content{
    padding:30px;
}

.dashboard-title{
    font-size:30px;
    font-weight:700;
    color:#111827;
    margin-bottom:30px;
}

/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.card{
    border:none;
    border-radius:20px;
    overflow:hidden;
}

.card-body{
    padding:25px;
}

.shadow-custom{
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/*
|--------------------------------------------------------------------------
| SUMMARY CARD
|--------------------------------------------------------------------------
*/

.summary-card{
    border-radius:20px;
    padding:25px;
    color:white;
}

.summary-card h5{
    font-size:16px;
    margin-bottom:10px;
}

.summary-card h2{
    font-size:28px;
    font-weight:700;
}

.bg-income{
    background:linear-gradient(135deg,#10b981,#059669);
}

.bg-outcome{
    background:linear-gradient(135deg,#ef4444,#dc2626);
}

.bg-balance{
    background:linear-gradient(135deg,#3b82f6,#2563eb);
}

/*
|--------------------------------------------------------------------------
| TABLE
|--------------------------------------------------------------------------
*/

.table{
    border-radius:15px;
    overflow:hidden;
}

.table thead{
    background:#111827;
    color:white;
}

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

/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.btn-dark{
    background:#111827;
    border:none;
    border-radius:12px;
    padding:10px 20px;
}

.btn-dark:hover{
    background:#1f2937;
}

/*
|--------------------------------------------------------------------------
| FORM
|--------------------------------------------------------------------------
*/

.form-control,
.form-select{
    border-radius:12px;
    padding:12px;
    border:1px solid #d1d5db;
}

.form-control:focus,
.form-select:focus{
    box-shadow:none;
    border-color:#2563eb;
}

/*
|--------------------------------------------------------------------------
| CHART
|--------------------------------------------------------------------------
*/

.chart-card{
    height:100%;
}

.chart-container{
    position:relative;
    height:300px;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

.sidebar{
    min-height:auto;
}

.content{
    padding:15px;
}

.dashboard-title{
    font-size:24px;
}

.summary-card h2{
    font-size:22px;
}

}