    :root {
        --bg: #f6f8fb;
        --card-bg: #fff;
        --text: #0f172a;
        --muted: #64748b;
        --border: #e5e7eb;
        --shadow: 0 10px 18px rgba(2, 8, 23, .06), 0 2px 6px rgba(2, 8, 23, .04);
        --radius: 14px;
        --btn: #0f172a;
        --btn1: #316dfaff;
        --btn-text: #fff;

        --blue-50: #e0f2fe;
        --blue-600: #2563eb;
        --green-50: #dcfce7;
        --green-600: #16a34a;
        --amber-50: #fef3c7;
        --amber-600: #d97706;
        --red-50: #fee2e2;
        --red-600: #dc2626;
        --slate-100: #f1f5f9;
        --headertd: #d1d1d1;
    }

    * {
        box-sizing: border-box
    }

    body {
        margin: 0;
        background: var(--bg);
        color: var(--text);
        font: 14px/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    }

    .container {
        max-width: 1600px;
        margin: 90px auto;
        padding: 0 20px;
    }

    .page-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 18px;
    }

    h1 {
        margin: 0;
        font-size: clamp(20px, 2.4vw, 28px);
        font-family: 'Genos';
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: .2px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        height: 40px;
        padding: 0 14px;
        border-radius: 10px;
        border: 1px solid transparent;
        background: var(--btn);
        color: var(--btn-text);
        text-decoration: none;
        font-weight: 600;
        box-shadow: var(--shadow);
    }

    .btn1 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        height: 40px;
        padding: 0 14px;
        border-radius: 10px;
        border: 1px solid transparent;
        background: var(--btn);
        color: var(--btn-text);
        text-decoration: none;
        font-weight: 600;
        box-shadow: var(--shadow);
    }

    .card {
        background: var(--card-bg);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    .table-wrap {
        overflow-x: auto;        
    }

    table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        min-width: 720px;
        font-family: 'Genos';
        /* border: 1px solid #b1b1b1;  */
        
    }

    thead th {
        text-align: left;
        font-weight: 600;
        color: var(--muted);
        padding: 14px 18px;
        background: var(--headertd
        );
        border-bottom: 1px solid var(--border);
        font-size: 18px;
        font-family: 'Genos';
        text-transform: uppercase;
    }

    tbody td {
        padding: 16px 18px;
        border-bottom: 1px solid var(--border);
        vertical-align: middle;
        background: #fff;
        font-size: 18px;
        color:black;
        font-weight: 400;
        text-transform: uppercase;
        font-family: 'Genos';        
    }

    tbody tr:last-child td {
        border-bottom: 0;
    }

    .muted {
        color: var(--muted);
    }

    .badge {
        display: inline-block;
        padding: 6px 10px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 12px;
    }

    .badge.pending {
        background: var(--amber-50);
        color: var(--amber-600);
    }

    .badge.approved {
        background: var(--green-50);
        color: var(--green-600);
    }

    .actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .chip {
        display: inline-flex;
        align-items: center;
        height: 28px;
        padding: 0 10px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid transparent;
    }

    .chip.view {
        background: var(--blue-50);
        color: var(--blue-600);
    }

    .chip.approve {
        background: var(--green-50);
        color: var(--green-600);
    }

    .chip.reject {
        background: var(--red-50);
        color: var(--red-600);
    }

    /* Hover (optional) */
    .chip:hover {
        filter: brightness(0.98);
    }

    .btn:hover {
        filter: brightness(0.97);
    }

    a {
        text-transform: uppercase;
    }