/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f4f8;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
}

h1 {
    color: #1a56db;
    margin-bottom: 10px;
    font-size: 28px;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
}

.search-box input:focus {
    outline: none;
    border-color: #1a56db;
}

.search-box button {
    padding: 12px 24px;
    background: #1a56db;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.search-box button:hover {
    background: #0e3f9e;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

/* Status badges */
.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-selesai { background: #d1fae5; color: #065f46; }
.status-proses { background: #dbeafe; color: #1e40af; }
.status-menunggu { background: #fef3c7; color: #92400e; }
.status-ditolak { background: #fee2e2; color: #991b1b; }

/* Hasil list */
.hasil-list {
    font-size: 13px;
    line-height: 1.6;
}

.hasil-item {
    margin-bottom: 4px;
}

.check { color: #059669; font-weight: bold; }
.cross { color: #dc2626; font-weight: bold; }

/* Info */
.info-pagination {
    margin: 15px 0;
    color: #6b7280;
    font-size: 14px;
}

.empty-results {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.pagination a {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.pagination a:hover {
    background: #1a56db;
    color: white;
    border-color: #1a56db;
}

.pagination .active {
    background: #1a56db;
    color: white;
    border: 1px solid #1a56db;
}

.pagination .disabled {
    background: #f9fafb;
    color: #9ca3af;
    border: 1px solid #e5e7eb;
    cursor: not-allowed;
}

.pagination-info {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    th, td { padding: 12px 8px; }
    .hasil-list { font-size: 11px; }
    .pagination a, .pagination span { padding: 6px 10px; font-size: 12px; }
}