/* Card */
.dl-stat{
    background:#FFFFFF;
    border:1px solid #E5E7EB;
    border-radius:16px;
    padding:24px;
    height:100%;
    box-shadow:0 2px 8px rgba(15,23,42,.05);
    transition:all .2s ease;
}

.dl-total{
    background:linear-gradient(135deg,#bfdbfe,#dbeafe);
}
.dl-month{
    background:linear-gradient(135deg,#bbf7d0,#dcfce7);
}
.dl-today{
    background:linear-gradient(135deg,#fef3c7,#fef9c3);
}

/* Hover */
.dl-stat:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(15,23,42,.08);
}

/* Judul */
.dl-stat-title{
    font-size:14px;
    font-weight:500;
    color:#000;
    margin-bottom:10px;
}

/* Angka */
.dl-stat-value{
    font-size:40px;
    font-weight:700;
    line-height:1;
    color:#0F172A;
}

.dl-chart-wrapper{
    position: relative;
    height:500px;
}

.dl-chart-wrapper canvas{
    width:100% !important;
    height:100% !important;
}

.dl-chart-small{
    height: 300px;
}

.dl-chart-large{
    height: 500px;
}


.dl-top-merk{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.dl-merk-item{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.dl-merk-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
}

.dl-merk-header strong{
    color:#2563EB;
    font-size:16px;
}

.dl-merk-bar{
    width:100%;
    height:10px;
    background:#E5E7EB;
    border-radius:999px;
    overflow:hidden;
}

.dl-merk-fill{
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg,#3B82F6,#60A5FA);
}