/* File: assets/css/style.css */
body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-content {
    flex: 1;
}
.card-icon {
    font-size: 3rem;
    color: #0d6efd;
}
.card-icon-success {
    color: #198754;
}
.card-icon-danger {
    color: #dc3545;
}
.chart-container {
    height: 300px;
}
@media (max-width: 768px) {
    .card-body h5 {
        font-size: 1rem;
    }
    .card-body h2 {
        font-size: 1.5rem;
    }
    /* Aturan tambahan untuk memastikan tabel responsif */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Untuk iOS */
    }
}
