.eup-pagination {
    margin: 0px 20px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

.eup-pagination-btn {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
}
.eup-pagination-btn {
    opacity: .45;
    font-weight: 400;
    color: black;
    cursor: not-allowed;
}
.eup-pagination-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.eup-pagination-info {
    font-size: 14px;
    color: #475569;
}
.eup-service-expand-row td {
    padding: 0 !important;
    background: #fbfdff;
    border-top: 1px solid #eef2f7;
}

.eup-expand-box {
    padding: 20px 22px 22px;
}

.eup-expand-header {
    margin-bottom: 14px;
}

.eup-expand-title {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px;
}

.eup-expand-subtitle {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.eup-expand-table {
    display: grid;
    gap: 10px;
}

.eup-expand-table-head,
.eup-expand-table-row {
    display: grid;
    grid-template-columns: 1.3fr .8fr .9fr .8fr 1.4fr .8fr;
    gap: 14px;
    align-items: center;
}

.eup-expand-table-head {
    padding: 0 14px 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #64748b;
    border-bottom: 1px solid #e5e7eb;
}

.eup-expand-table-row {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
}

.eup-option-col {
    font-size: 13px;
    color: #334155;
    line-height: 1.6;
}

.eup-option-col--title strong {
    font-size: 14px;
    color: #0f172a;
    font-weight: 800;
}

.eup-option-col--price {
    font-weight: 800;
    color: #004689;
    white-space: nowrap;
}

.eup-option-col--notes {
    color: #64748b;
}.eup-service-row.is-open > td:first-child,
.eup-service-expand-row.is-open > td {
    position: relative;
}

.eup-service-row.is-open > td:first-child::before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: 0;
    left: -2px;
    width: 4px;
    background: #004689;
    border-top-left-radius: 14px;
}

.eup-service-expand-row.is-open > td::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -2px;
    left: -2px;
    width: 4px;
    background: #004689;
    border-bottom-left-radius: 14px;
}
.eup-toggle-action {
  width: 100%;
    display: flex;
    
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
}

.eup-toggle-action:hover {
    color: #0f172a;
    background: transparent;
    transform: none;
    box-shadow: none;
}

.eup-toggle-action__label {
    color: inherit;
}

.eup-toggle-action__count {
    color: #94a3b8;
    font-weight: 700;
}

.eup-toggle-action__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 11px;
    line-height: 1;
    transition: transform .18s ease, background-color .18s ease;
}

.eup-toggle-action[aria-expanded="true"] .eup-toggle-action__icon {
    transform: rotate(180deg);
    background: #e2e8f0;
}

.eup-toggle-action[aria-expanded="true"] .eup-toggle-action__label {
    color: #0f172a;
}
.eup-option-col--action {
    display: flex;
    justify-content: flex-start;
}

.eup-option-preview {
    margin-top: 6px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .eup-expand-table-head {
        display: none;
    }

    .eup-expand-table-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .eup-option-col--action {
        margin-top: 6px;
    }
}
    
        .eup-dashboard-wrap{
            max-width:1400px;
            margin:24px auto 40px;
            padding:0 18px;
            font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
            color:#0f172a;
        }

        .eup-shell-panel{
            background:#fff;
            border:1px solid #e5e7eb;
            border-radius:18px;
            box-shadow:0 8px 24px rgba(15,23,42,.04);
        }

        .eup-topbar{
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:16px;
            padding:18px 22px;
            margin-bottom:16px;
        }

        .eup-topbar-left h1{
            margin:0;
            font-size:30px;
            line-height:1.05;
            letter-spacing:-.03em;
            color:#0f172a;
        }

        .eup-topbar-left p{
            margin:6px 0 0;
            color:#64748b;
            font-size:14px;
            line-height:1.6;
        }

        .eup-topbar-right{
            display:flex;
            gap:10px;
            flex-wrap:wrap;
            align-items:center;
        }

        .eup-pill{
            display:inline-flex;
            align-items:center;
            padding:8px 12px;
            border-radius:999px;
            background:#f8fafc;
            border:1px solid #e2e8f0;
            color:#334155;
            font-size:12px;
            font-weight:700;
            white-space:nowrap;
        }

        .eup-btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            min-height:42px;
            padding:0 16px;
            border-radius:12px;
            border:0;
            background:#004689;
            color:#fff !important;
            font-size:14px;
            font-weight:700;
            text-decoration:none;
            cursor:pointer;
            transition:all .18s ease;
        }

        .eup-btn:hover{
            transform:translateY(-1px);
            box-shadow:0 10px 20px rgba(0,70,137,.16);
        }

        .eup-btn--secondary{
            background:#fff;
            color:#004689 !important;
            border:1px solid #dbe2ea;
            box-shadow:none;
        }

        .eup-toolbar{
            padding:18px 22px;
            margin-bottom:16px;
        }

        .eup-toolbar-grid{
            display:grid;
            grid-template-columns:2.2fr 1.2fr 1fr 1.2fr auto;
            gap:12px;
            align-items:end;
        }

        .eup-field{
            margin:0;
        }

        .eup-label{
            display:block;
            margin-bottom:7px;
            font-size:12px;
            font-weight:700;
            letter-spacing:.03em;
            text-transform:uppercase;
            color:#64748b;
        }

        .eup-input,
        .eup-select,
        .eup-textarea{
            width:100%;
            box-sizing:border-box;
            border:1px solid #dbe2ea;
            background:#fff;
            color:#0f172a;
            border-radius:12px;
            font-size:14px;
        }

        .eup-input,
        .eup-select{
            height:44px;
            padding:0 12px;
        }

        .eup-textarea{
            min-height:120px;
            padding:12px 14px;
            resize:vertical;
        }

        .eup-input:focus,
        .eup-select:focus,
        .eup-textarea:focus{
            outline:none;
            border-color:#3b82f6;
            box-shadow:0 0 0 4px rgba(59,130,246,.10);
        }

        .eup-table-panel{
            overflow:hidden;
        }

        .eup-table-wrap{
            overflow:auto;
        }

        .eup-table{
            width:100%;
            border-collapse:collapse;
            min-width:1100px;
        }

        .eup-table thead th{
            text-align:left;
            padding:16px 18px;
            font-size:12px;
            font-weight:800;
            letter-spacing:.05em;
            text-transform:uppercase;
            color:#475569;
            background:#f8fafc;
            border-bottom:1px solid #e5e7eb;
            white-space:nowrap;
        }

        .eup-table tbody td{
            padding:16px 18px;
            vertical-align:top;
            border-bottom:1px solid #eef2f7;
            font-size:14px;
            color:#0f172a;
        }

        .eup-table tbody tr:hover{
            background:#fbfdff;
        }

        .eup-service-code{
            font-weight:700;
            color:#004689;
            white-space:nowrap;
        }

        .eup-service-title{
            margin:0 0 5px;
            font-size:15px;
            font-weight:800;
            color:#0f172a;
        }

        .eup-service-desc{
            margin:0;
            font-size:13px;
            color:#64748b;
            line-height:1.6;
            max-width:480px;
        }

        .eup-badge{
            display:inline-flex;
            align-items:center;
            padding:6px 10px;
            border-radius:999px;
            background:#eff6ff;
            color:#1d4ed8;
            font-size:12px;
            font-weight:700;
            white-space:nowrap;
        }

        .eup-price{
            font-weight:800;
            color:#004689;
            white-space:nowrap;
        }

        .eup-muted{
            color:#64748b;
            font-size:13px;
            line-height:1.6;
        }

        .eup-actions{
            display:flex;
            gap:8px;margin-top:0px!important;
            flex-wrap:wrap;
        }

        .eup-link-btn{    width: 100%;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            min-height:38px;
            padding:0 12px;
            border-radius:10px;
            border:1px solid #dbe2ea;
            background:#fff;
            color:#004689;
            font-size:13px;
            font-weight:700;
            text-decoration:none;
            cursor:pointer;
        }

        .eup-link-btn:hover{
            background:#f8fafc;
        }

        .eup-no-results{
            display:none;
            padding:18px 22px;
            color:#64748b;
            font-size:14px;
            border-top:1px solid #eef2f7;
            background:#fff;
        }

        .eup-inquiry-panel{
            margin-top:18px;
            padding:20px 22px;
        }

        .eup-inquiry-head{
            margin-bottom:14px;
        }

        .eup-inquiry-head h3{
            margin:0 0 6px;
            font-size:22px;
            color:#0f172a;
        }

        .eup-inquiry-head p{
            margin:0;
            color:#64748b;
            font-size:14px;
            line-height:1.7;
        }

        .eup-inquiry-grid{
            display:grid;
            grid-template-columns:1.1fr .9fr .9fr;
            gap:12px;
            margin-bottom:12px;
        }

        .eup-inquiry-actions{
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:12px;
            flex-wrap:wrap;
            margin-top:12px;
        }

        @media (max-width: 1024px){
            .eup-toolbar-grid{
                grid-template-columns:1fr 1fr;
            }
            .eup-inquiry-grid{
                grid-template-columns:1fr;
            }
        }

        @media (max-width: 720px){
            .eup-dashboard-wrap{
                padding:0 12px;
            }
            .eup-topbar,
            .eup-toolbar,
            .eup-inquiry-panel{
                padding:16px;
            }
            .eup-topbar{
                flex-direction:column;
                align-items:flex-start;
            }
            .eup-toolbar-grid{
                grid-template-columns:1fr;
            }
        }
  