body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f6f9;
}
.row-margin{
    margin-top:30px;
}
/* Judul Dashboard */
.dashboard-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Kartu dengan gradasi biru ke ungu */
.themed-card {
    background: linear-gradient(135deg, #00B7E1, #0058A0);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    color: white;
    overflow: hidden;
    transition: 0.3s ease;
}
.themed-card-secondary {
    background: linear-gradient(135deg, #F2F6FA, #E3ECF3);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    color: #333;
    padding: 16px;
    transition: 0.3s ease;
    border-left: 4px solid #00B7E1;
}
.themed-card-secondary:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.themed-card:hover {
    transform: scale(1.01);
}

/* Isi card */
.card-body {
    padding: 30px;
}

.title-card {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.title-card {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.title-card-secondary {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.content-card {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
}

.description-card {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/*Button*/
.btn-outline-custom {
    color: #0058A0;
    border: 1px solid #0058A0;
}

.btn-outline-custom:hover {
    background-color: #0058A0;
    color: #fff;
}

/*Button Export*/
.btn-copy {
    background-color: #0058A0 !important;
    color: white !important;
    border: none;
}
.btn-excel {
    background-color: #FDB813 !important;
    color: black !important;
    border: none;
}
.btn-pdf {
    background-color: #F37021 !important;
    color: white !important;
    border: none;
}
.btn-print {
    background-color: #E30613 !important;
    color: white !important;
    border: none;
}

.dt-button {
    margin-right: 5px !important;
    border-radius: 4px !important;
    padding: 5px 12px !important;
    font-weight: bold;
}
/*End Button Export*/

/*End Button*/

/*Style Table*/
.table-custom {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.table-custom thead {
    background: linear-gradient(to right, #001F3F, #007BFF);
    color: #fff;
}
.table-custom tbody tr:hover {
    background-color: #f1f1f1;
}
.table-custom td, .table-custom th {
    vertical-align: middle;
}
.table-custom td:last-child {
    text-align: right;
    font-weight: 600;
    color: #0058A0;
}
/*End Style Table*/