* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            background: #f7f9fc;
            color: #222;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* =========================
           NAVBAR
        ========================= */

        .navbar {
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: auto;
            min-height: 75px;
            padding: 0 20px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 25px;
            font-weight: 800;
            color: #0d3b66;
        }

        .logo span {
            color: #f4a261;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu a {
            color: #333;
            font-size: 15px;
            font-weight: 600;
            transition: 0.3s;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #0d6efd;
        }

        /* =========================
           PAGE HEADER
        ========================= */

        .page-header {
            background:
                linear-gradient(
                    rgba(13, 59, 102, 0.90),
                    rgba(13, 59, 102, 0.90)
                ),
                url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");

            background-size: cover;
            background-position: center;

            padding: 90px 20px;
            text-align: center;
            color: white;
        }

        .page-header h1 {
            font-size: 45px;
            margin-bottom: 10px;
        }

        .page-header p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* =========================
           MEMBER SECTION
        ========================= */

        .member-section {
            max-width: 1200px;
            margin: 70px auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 35px;
        }

        .section-title h2 {
            color: #0d3b66;
            font-size: 34px;
            margin-bottom: 8px;
        }

        .section-title p {
            color: #666;
            font-size: 16px;
            margin: 4px 0;
        }

        .member-tools {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .search-box {
            flex: 1;
            max-width: 450px;
        }

        .search-box input {
            width: 100%;
            padding: 13px 16px;
            border: 1px solid #d9dfe7;
            border-radius: 8px;
            outline: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .search-box input:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
        }

        .member-count {
            color: #666;
            font-size: 14px;
        }

        .member-count strong {
            color: #0d3b66;
        }

        .table-wrapper {
            width: 100%;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
        }

        .member-table {
            width: 100%;
            border-collapse: collapse;
        }

        .member-table thead {
            background: #0d3b66;
            color: white;
        }

        .member-table th,
        .member-table td {
            padding: 16px 18px;
            text-align: left;
            border-bottom: 1px solid #edf0f4;
            font-size: 14px;
        }

        .member-table th:first-child,
        .member-table td:first-child {
            width: 80px;
            text-align: center;
        }

        .member-table th {
            font-weight: 700;
        }

        .member-table tbody tr:hover {
            background: #f5f9ff;
        }

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

        .no-result {
            display: none;
            text-align: center;
            padding: 50px 20px;
            color: #777;
        }

        .no-result h3 {
            color: #0d3b66;
            margin-bottom: 5px;
        }

        /* =========================
           PAGINATION
        ========================= */

        .pagination-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 22px 15px;
            flex-wrap: wrap;
            background: #fff;
        }

        .pagination-btn {
            min-width: 38px;
            height: 38px;
            padding: 0 12px;
            border: 1px solid #d9dfe7;
            background: #fff;
            color: #0d3b66;
            border-radius: 7px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: 0.2s;
        }

        .pagination-btn:hover:not(:disabled) {
            background: #eaf3ff;
            border-color: #0d6efd;
        }

        .pagination-btn.active {
            background: #0d6efd;
            color: #fff;
            border-color: #0d6efd;
        }

        .pagination-btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }

        .pagination-info {
            width: 100%;
            text-align: center;
            color: #777;
            font-size: 13px;
            margin-top: 5px;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: #0b2945;
            color: white;
            padding: 50px 20px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;

            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
        }

        .footer-column h3 {
            margin-bottom: 18px;
            font-size: 20px;
        }

        .footer-column p {
            color: #ccc;
            font-size: 14px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-column ul li a:hover {
            color: white;
        }

        .copyright {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 20px;

            border-top: 1px solid rgba(255,255,255,0.1);

            text-align: center;
            color: #aaa;
            font-size: 13px;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 768px) {

            .nav-container {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }

            .nav-menu {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .page-header {
                padding: 65px 20px;
            }

            .page-header h1 {
                font-size: 34px;
            }

            .member-section {
                margin: 50px auto;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .member-tools {
                flex-direction: column;
                align-items: stretch;
            }

            .search-box {
                max-width: 100%;
            }

            .member-count {
                text-align: right;
            }

            .table-wrapper {
                overflow-x: auto;
            }

            .member-table {
                min-width: 700px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }
/* ==========================================
   PAGINATION MEMBER 
========================================== */

.pagination-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 12px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #d9e1ea;
    border-radius: 8px;

    background: #ffffff;
    color: #123b64;

    font-size: 12px;
    font-weight: 900;


    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: #123b64;
    color: #ffffff;
    border-color: #123b64;
}

.pagination-btn.active {
    background: #123b64;
    color: #ffffff;
    border-color: #123b64;
    font-weight: 700;
}

.pagination-btn:first-child,
.pagination-btn:last-child {
    font-size: 22px;
    font-weight: 700;
}

Jadi tampilannya akan lebih

/* Hover */
.pagination-btn:hover {
    background: #123b64;
    color: #ffffff;
    border-color: #123b64;
}

/* Nomor halaman aktif */
.pagination-btn.active {
    background: #123b64;
    color: #ffffff;
    border-color: #123b64;
}

/* Tombol ‹ dan › */
.pagination-btn:first-child,
.pagination-btn:last-child {
    font-size: 20px;
    font-weight: 400;
}

/* Mobile */
@media (max-width: 600px) {

    .pagination-wrapper {
        gap: 5px;
        margin-top: 20px;
    }

    .pagination-btn {
        min-width: 34px;
        height: 34px;
        padding: 0 8px;
        font-size: 13px;
    }
}


/* ==========================================
   PESAN JIKA DATA TIDAK DITEMUKAN
========================================== */

.no-result {
    display: none;
    text-align: center;
    padding: 35px 20px;
    color: #6b7280;
}

.no-result h3 {
    margin: 0 0 8px;
    color: #123b64;
    font-size: 18px;
}

.no-result p {
    margin: 0;
    font-size: 14px;
}