/* Main Container */
.permohonan-section {
    position: relative;
    padding-bottom: 4rem;
    background-color: #fff;
    min-height: 100vh;
}

/* Filter Card */
.filter-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}

.form-control,
.form-select {
    border-radius: 8px;
    border-color: #d1d5db;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: #1f2937;
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.btn-filter,
.btn-reset {
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-filter {
    background-color: #111827;
    color: #fff;
    border: none;
}

.btn-filter:hover {
    background-color: #1f2937;
    color: #fff;
    transform: translateY(-1px);
}

.btn-reset {
    background-color: transparent;
    color: #111827;
    border: 1px solid #d1d5db;
}

.btn-reset:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

/* Modern Table */
.table-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

.custom-table thead th {
    background-color: #f9fafb;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.custom-table tbody tr {
    transition: all 0.2s;
}

.custom-table tbody tr:hover {
    background-color: #f9fafb;
}

.custom-table tbody td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #f3f4f6;
    color: #1f2937;
    font-size: 0.95rem;
}

.custom-table tbody tr:last-child td {
    border-bottom: none;
}

/* Status Badges */
.status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.status-badge.bg-secondary {
    /* Default / Unknown */
    background-color: #f3f4f6;
    color: #fff;
    border: 1px solid #e5e7eb;
}

.status-badge.bg-warning {
    /* Belum Diverifikasi */
    background-color: #fffbeb;
    color: #fff;
    border: 1px solid #fcd34d;
}

.status-badge.bg-primary {
    /* Dalam Proses */
    background-color: #eff6ff;
    color: #fff;
    border: 1px solid #bfdbfe;
}

.status-badge.bg-success {
    /* Dipenuhi */
    background-color: #ecfdf5;
    color: #fff;
    border: 1px solid #a7f3d0;
}

.status-badge.bg-danger {
    /* Ditolak */
    background-color: #fef2f2;
    color: #fff;
    border: 1px solid #fecaca;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 3rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    display: block;
}

/* Pagination */
.pagination-wrapper {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background-color: #fff;
}