/* Statistik Dashboard CSS */

.statistik-dashboard-container {
    position: relative;
    width: 100%;
}

.statistik-dashboard-container .stat-card {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3c8dbc;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.statistik-dashboard-container .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.statistik-dashboard-container .stat-card.produksi {
    border-left-color: #00a65a;
}

.statistik-dashboard-container .stat-card h4 {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
    font-weight: normal;
}

.statistik-dashboard-container .stat-card .value {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.statistik-dashboard-container .stat-card .persentase {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.statistik-dashboard-container .stat-card .persentase.naik {
    color: #00a65a;
}

.statistik-dashboard-container .stat-card .persentase.turun {
    color: #dd4b39;
}

/* Responsive */
@media (max-width: 768px) {
    .statistik-dashboard-container .stat-card {
        padding: 15px;
    }
    
    .statistik-dashboard-container .stat-card .value {
        font-size: 24px;
    }
    
    .statistik-dashboard-container .stat-card .persentase {
        font-size: 16px;
    }
}
