/* Styling untuk Dashboard KOPET */
.kopet-dashboard-wrap {
    background-color: #f9fafc;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.kopet-dashboard-title {
    font-size: 32px;
    color: #3c8dbc;
    margin-bottom: 20px;
    font-weight: bold;
}

.kopet-dashboard-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.kopet-dashboard-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.kopet-dashboard-header p {
    font-size: 16px;
    color: #555;
}

.kopet-dashboard-body {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.kopet-stat-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    width: 30%;
}

.kopet-stat-card .kopet-stat-header {
    background-color: #f4f6f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.kopet-stat-card .kopet-stat-header i {
    font-size: 28px;
    color: #3c8dbc;
}

.kopet-stat-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.kopet-stat-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.kopet-stat-card .button-primary {
    background-color: #3c8dbc;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.kopet-stat-card .button-primary:hover {
    background-color: #357ebd;
}

.kopet-stat-card.full-width {
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-4 {
    width: 30%;
    padding: 10px;
}

.col-md-12 {
    width: 100%;
    padding: 10px;
}

@media (max-width: 768px) {
    .col-md-4 {
        width: 100%;
    }

    .kopet-dashboard-body {
        flex-direction: column;
    }
}

/* === Rekapitulasi Tabel Styling === */
.wp-list-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 20px;
}

.wp-list-table th,
.wp-list-table td {
    padding: 8px 12px;
    text-align: center;
    border: 1px solid #ddd;
}

.wp-list-table thead th {
    background-color: #0073aa;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.wp-list-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.wp-list-table tbody tr:hover {
    background-color: #e0f3ff;
}

.wp-list-table td {
    color: #333;
}

/* Container scroll horizontal untuk tabel besar */
.rekapitulasi-container div[style*="overflow-x"] {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

/* Judul dan form rekap */
.rekapitulasi-container h1,
.rekapitulasi-container h2,
.rekapitulasi-container h3 {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    color: #222;
}

.rekapitulasi-container form {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-family: 'Segoe UI', sans-serif;
}

.rekapitulasi-container select,
.rekapitulasi-container input[type="submit"] {
    padding: 5px 10px;
    font-size: 14px;
}

