
        /* Base Container */
        .mpr-container {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }

        /* ── Stats ── */
        .mpr-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .mpr-stat-card {
            background: #ffffff;
            border-radius: 1rem;
            padding: 1.25rem;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
        }

        .dark .mpr-stat-card {
            background: #1e293b;
            border-color: #334155;
        }

        .mpr-stat-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .mpr-stat-icon.total {
            background: #eff6ff;
            color: #3b82f6;
        }

        .mpr-stat-icon.waiting {
            background: #fffbeb;
            color: #d97706;
        }

        .mpr-stat-icon.done {
            background: #ecfdf5;
            color: #10b981;
        }

        .dark .mpr-stat-icon.total {
            background: rgba(59, 130, 246, .15);
            color: #60a5fa;
        }

        .dark .mpr-stat-icon.waiting {
            background: rgba(245, 158, 11, .15);
            color: #fbbf24;
        }

        .dark .mpr-stat-icon.done {
            background: rgba(16, 185, 129, .15);
            color: #34d399;
        }

        .mpr-stat-icon svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        .mpr-stat-info {
            display: flex;
            flex-direction: column;
        }

        .mpr-stat-val {
            font-size: 1.5rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.2;
        }

        .dark .mpr-stat-val {
            color: #f8fafc;
        }

        .mpr-stat-label {
            font-size: 0.82rem;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .dark .mpr-stat-label {
            color: #94a3b8;
        }

        /* ── Toolbar ── */
        .mpr-toolbar {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.25rem;
            flex-wrap: wrap;
        }

        .mpr-search-wrap {
            position: relative;
            flex: 1;
            min-width: 280px;
        }

        .mpr-search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1.2rem;
            height: 1.2rem;
            color: #94a3b8;
        }

        .mpr-search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.75rem;
            border-radius: 0.8rem;
            border: 1px solid #cbd5e1;
            background: #fff;
            color: #0f172a;
            font-size: 0.9rem;
            transition: all .2s;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, .02);
        }

        .mpr-search-input:focus {
            border-color: #6366f1;
            outline: none;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, .15);
        }

        .dark .mpr-search-input {
            background: #0f172a;
            border-color: #334155;
            color: #f8fafc;
        }

        .mpr-filter-select {
            padding: 0.75rem 1rem;
            border-radius: 0.8rem;
            border: 1px solid #cbd5e1;
            background: #fff;
            color: #0f172a;
            font-size: 0.9rem;
            min-width: 200px;
        }

        .dark .mpr-filter-select {
            background: #0f172a;
            border-color: #334155;
            color: #f8fafc;
        }

        .mpr-list-table-wrap {
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            overflow: auto;
            background: #ffffff;
            box-shadow: 0 1px 4px rgba(15, 23, 42, .04);
        }

        .dark .mpr-list-table-wrap {
            background: #1e293b;
            border-color: #334155;
        }

        .mpr-list-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 780px;
        }

        .mpr-list-table thead th {
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            padding: 0.6rem 0.65rem;
            text-align: left;
        }

        .dark .mpr-list-table thead th {
            background: #0f172a;
            border-bottom-color: #334155;
        }

        .mpr-sort-btn,
        .mpr-head-action {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            border: none;
            background: transparent;
            color: #64748b;
            padding: 0.2rem 0.35rem;
            border-radius: 0.45rem;
            cursor: pointer;
        }

        .mpr-sort-btn:hover {
            background: #eef2ff;
            color: #334155;
        }

        .mpr-sort-btn.active {
            background: #dbeafe;
            color: #1d4ed8;
        }

        .dark .mpr-sort-btn,
        .dark .mpr-head-action {
            color: #94a3b8;
        }

        .dark .mpr-sort-btn:hover {
            background: rgba(59, 130, 246, .15);
            color: #bfdbfe;
        }

        .dark .mpr-sort-btn.active {
            background: rgba(37, 99, 235, .25);
            color: #93c5fd;
        }

        .mpr-head-icon {
            width: 1rem;
            height: 1rem;
            flex-shrink: 0;
        }

        .mpr-sort-arrow {
            font-size: 0.65rem;
            line-height: 1;
        }

        .mpr-list-table tbody td {
            padding: 0.78rem 0.65rem;
            border-bottom: 1px solid #f1f5f9;
            font-size: 0.84rem;
            color: #334155;
            vertical-align: top;
        }

        .mpr-list-table tbody tr:hover {
            background: #f8fafc;
        }

        .dark .mpr-list-table tbody td {
            color: #cbd5e1;
            border-bottom-color: #334155;
        }

        .dark .mpr-list-table tbody tr:hover {
            background: rgba(148, 163, 184, .08);
        }

        .mpr-doc-no {
            font-weight: 700;
            color: #1d4ed8;
        }

        .dark .mpr-doc-no {
            color: #93c5fd;
        }

        .mpr-load-state {
            margin-top: 0.85rem;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.82rem;
            color: #64748b;
            font-weight: 600;
        }

        .mpr-load-end {
            display: flex;
        }

        .mpr-spinner {
            width: 0.9rem;
            height: 0.9rem;
            border: 2px solid currentColor;
            border-right-color: transparent;
            border-radius: 999px;
            animation: mpr-spin 0.8s linear infinite;
        }

        @keyframes mpr-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* ── PR List Cards ── */
        .mpr-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .mpr-row {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-left: 4px solid #3b82f6;
            border-radius: 1rem;
            padding: 1rem 1.25rem;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 1.25rem;
            align-items: center;
            box-shadow: 0 1px 4px rgba(15, 23, 42, .04);
            transition: box-shadow .2s, transform .2s;
        }

        .mpr-row:hover {
            box-shadow: 0 8px 24px rgba(59, 130, 246, .12);
            transform: translateY(-2px);
        }

        .dark .mpr-row {
            background: #1e293b;
            border-color: #334155;
            border-left-color: #60a5fa;
        }

        .mpr-row-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            background: #eff6ff;
            color: #2563eb;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dark .mpr-row-icon {
            background: rgba(59, 130, 246, .2);
            color: #93c5fd;
        }

        .mpr-row-icon svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        .mpr-row-body {
            min-width: 0;
        }

        .mpr-row-top {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-bottom: 0.4rem;
        }

        .mpr-pr-num {
            font-size: 1rem;
            font-weight: 800;
            color: #1e40af;
        }

        .dark .mpr-pr-num {
            color: #60a5fa;
        }

        .mpr-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .mpr-badge-warning {
            background: #fffbeb;
            color: #92400e;
            border: 1px solid #fde68a;
        }

        .mpr-badge-success {
            background: #ecfdf5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        .dark .mpr-badge-warning {
            background: rgba(245, 158, 11, .15);
            color: #fbbf24;
            border-color: rgba(245, 158, 11, .3);
        }

        .dark .mpr-badge-success {
            background: rgba(16, 185, 129, .15);
            color: #34d399;
            border-color: rgba(16, 185, 129, .3);
        }

        .mpr-meta-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }

        .mpr-meta-item {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.8rem;
            color: #475569;
            font-weight: 600;
        }

        .dark .mpr-meta-item {
            color: #cbd5e1;
        }

        .mpr-meta-item svg {
            width: 0.9rem;
            height: 0.9rem;
            color: #94a3b8;
        }

        .mpr-item-hint {
            margin-top: 0.45rem;
            display: inline-flex;
            align-items: center;
            padding: 0.28rem 0.6rem;
            border-radius: 999px;
            font-size: 0.78rem;
            color: #166534;
            font-weight: 700;
            background: #dcfce7;
            border: 1px solid #86efac;
        }

        .dark .mpr-item-hint {
            color: #86efac;
            background: rgba(34, 197, 94, 0.15);
            border-color: rgba(34, 197, 94, 0.35);
        }

        .mpr-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #ffffff;
            border-radius: 0.75rem;
            padding: 0.65rem 1.25rem;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all .2s;
            box-shadow: 0 4px 12px rgba(245, 158, 11, .2);
        }

        .mpr-action-btn:hover {
            background: linear-gradient(135deg, #d97706, #b45309);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(245, 158, 11, .3);
        }

        .mpr-action-btn svg {
            width: 1rem;
            height: 1rem;
        }

        /* ── Modal ── */
        .mpr-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(2, 6, 23, 0.7);
            backdrop-filter: blur(6px);
            z-index: 9000;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 2rem 1rem;
            overflow-y: auto;
        }

        .mpr-modal-overlay-full {
            padding: 0;
            align-items: stretch;
            overflow: hidden;
        }

        .mpr-modal {
            width: 100%;
            max-width: 1100px;
            background: #ffffff;
            border-radius: 1.25rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
            animation: mprSlideUp .3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
        }

        .mpr-modal-fullscreen {
            width: 100vw;
            max-width: 100vw;
            min-height: 100vh;
            margin: 0;
            border-radius: 0;
            display: flex;
            flex-direction: column;
        }

        .mpr-modal-fullscreen .mpr-modal-body {
            flex: 1 1 auto;
            overflow: auto;
        }

        .mpr-modal-fullscreen .mpr-modal-footer {
            flex-shrink: 0;
        }

        @keyframes mprSlideUp {
            from {
                transform: translateY(2rem);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .dark .mpr-modal {
            background: #0f172a;
            border: 1px solid #334155;
        }

        .mpr-modal-header {
            padding: 1.25rem 1.5rem;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 1.25rem 1.25rem 0 0;
        }

        .mpr-modal-title {
            font-size: 1.15rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .mpr-modal-title svg {
            width: 1.5rem;
            height: 1.5rem;
            color: #93c5fd;
        }

        .mpr-modal-header-actions {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .mpr-modal-full-toggle {
            background: rgba(255, 255, 255, .2);
            border: none;
            color: white;
            width: 2.25rem;
            height: 2.25rem;
            border-radius: 0.5rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background .2s;
        }

        .mpr-modal-full-toggle:hover {
            background: rgba(255, 255, 255, .3);
        }

        .mpr-modal-close {
            background: rgba(255, 255, 255, .2);
            border: none;
            color: white;
            width: 2.25rem;
            height: 2.25rem;
            border-radius: 0.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s;
        }

        .mpr-modal-close:hover {
            background: rgba(255, 255, 255, .3);
        }

        .mpr-modal-body {
            padding: 1.5rem;
            background: #f8fafc;
        }

        .dark .mpr-modal-body {
            background: #020617;
        }

        /* Info Grid in Modal */
        .mpr-info-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 1.25rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
        }

        .dark .mpr-info-card {
            background: #1e293b;
            border-color: #334155;
        }

        .mpr-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .mpr-info-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .mpr-info-label {
            font-size: 0.75rem;
            font-weight: 700;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .mpr-info-val {
            font-size: 0.95rem;
            font-weight: 600;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .dark .mpr-info-label {
            color: #94a3b8;
        }

        .dark .mpr-info-val {
            color: #f1f5f9;
        }

        .mpr-info-val svg {
            width: 1rem;
            height: 1rem;
            color: #3b82f6;
        }

        /* Items Table in Modal */
        .mpr-table-wrap {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
        }

        .dark .mpr-table-wrap {
            background: #1e293b;
            border-color: #334155;
        }

        .mpr-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .mpr-table th {
            background: #f1f5f9;
            padding: 0.75rem 1rem;
            font-size: 0.8rem;
            font-weight: 700;
            color: #475569;
            text-transform: uppercase;
            border-bottom: 1px solid #e2e8f0;
        }

        .mpr-table td {
            padding: 0.85rem 1rem;
            font-size: 0.85rem;
            color: #1e293b;
            border-bottom: 1px solid #f1f5f9;
            font-weight: 500;
        }

        .dark .mpr-table th {
            background: #0f172a;
            color: #94a3b8;
            border-color: #334155;
        }

        .dark .mpr-table td {
            color: #cbd5e1;
            border-color: #334155;
        }

        .mpr-qty-input {
            width: 96px;
            padding: 0.4rem 0.5rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            text-align: center;
            font-weight: 700;
            color: #0f172a;
            background: #f8fafc;
        }

        .mpr-input {
            width: 100%;
            min-width: 120px;
            padding: 0.4rem 0.55rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-size: 0.82rem;
            text-align: center;
            font-weight: 700;
            color: #0f172a;
            background-color: #f8fafc;
        }

        .mpr-name-input {
            min-width: 280px;
            text-align: left;
        }

        .mpr-size-input {
            min-width: 130px;
        }

        .mpr-size-input-narrow {
            min-width: 100px;
            max-width: 105px;
        }

        .mpr-unit-input {
            min-width: 90px;
            max-width: 95px;
        }

        .mpr-remaining-input {
            width: 84px;
        }

        .mpr-priority-select-narrow {
            min-width: 110px;
            max-width: 115px;
        }

        .mpr-select-input::-ms-expand {
            display: none;
        }

        .mpr-description-input {
            width: 100%;
            min-height: 60px;
            padding: 0.55rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-size: 0.82rem;
            color: #0f172a;
            background-color: #fff;
            font-family: inherit;
            resize: vertical;
        }

        .mpr-description-input:focus {
            border-color: #3b82f6;
            outline: none;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, .2);
        }

        .dark .mpr-description-input {
            background-color: #0f172a;
            border-color: #475569;
            color: #f1f5f9;
        }

        .mpr-table-description-input {
            width: 100%;
            min-width: 200px;
            padding: 0.45rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.4rem;
            font-size: 0.75rem;
            color: #0f172a;
            background-color: #fff;
            font-family: inherit;
        }

        .mpr-table-description-input:focus {
            border-color: #3b82f6;
            outline: none;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, .2);
        }

        .dark .mpr-table-description-input {
            background-color: #0f172a;
            border-color: #475569;
            color: #f1f5f9;
        }

        .mpr-select-input {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            padding-right: 0.55rem;
            text-align: left;
            background-color: #f8fafc;
            background-image: none;
        }

        .mpr-input:focus {
            border-color: #3b82f6;
            outline: none;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, .2);
        }

        .mpr-qty-input:focus {
            border-color: #3b82f6;
            outline: none;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, .2);
        }

        .dark .mpr-qty-input {
            background: #0f172a;
            border-color: #475569;
            color: #f1f5f9;
        }

        .dark .mpr-input {
            background: #0f172a;
            border-color: #475569;
            color: #f1f5f9;
        }

        .dark .mpr-select-input {
            background-color: #0f172a;
            background-image: none;
        }

        .mpr-select-input option[value=""] {
            color: #64748b;
            font-style: italic;
        }

        .mpr-delete-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
            border: 1px solid #fecaca;
            background: #fef2f2;
            color: #b91c1c;
            border-radius: 0.55rem;
            padding: 0.3rem 0.65rem;
            font-size: 0.75rem;
            font-weight: 700;
            cursor: pointer;
        }

        .mpr-delete-btn svg {
            width: 0.85rem;
            height: 0.85rem;
            flex-shrink: 0;
        }

        .mpr-delete-btn:hover {
            background: #fee2e2;
            border-color: #fca5a5;
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(220, 38, 38, .16);
        }

        .dark .mpr-delete-btn {
            border-color: rgba(248, 113, 113, .35);
            background: rgba(127, 29, 29, .35);
            color: #fca5a5;
        }

        .dark .mpr-delete-btn:hover {
            background: rgba(153, 27, 27, .45);
            border-color: rgba(252, 165, 165, .45);
            box-shadow: 0 4px 10px rgba(248, 113, 113, .12);
        }

        body:has(.mpr-modal-overlay),
        html:has(.mpr-modal-overlay) {
            overflow: hidden;
        }

        .mpr-modal-footer {
            padding: 1.25rem 1.5rem;
            background: #fff;
            border-top: 1px solid #e2e8f0;
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            border-radius: 0 0 1.25rem 1.25rem;
        }

        .dark .mpr-modal-footer {
            background: #1e293b;
            border-color: #334155;
        }

        .mpr-btn-cancel {
            padding: 0.65rem 1.25rem;
            border: 1px solid #cbd5e1;
            background: #fff;
            color: #475569;
            border-radius: 0.75rem;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s;
        }

        .mpr-btn-cancel:hover {
            background: #f1f5f9;
        }

        .dark .mpr-btn-cancel {
            background: #0f172a;
            border-color: #475569;
            color: #cbd5e1;
        }

        .dark .mpr-btn-cancel:hover {
            background: #334155;
        }

        .mpr-delete-reason-overlay {
            position: absolute;
            inset: 0;
            z-index: 40;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background: rgba(2, 6, 23, .45);
            backdrop-filter: blur(2px);
        }

        .mpr-delete-reason-modal {
            width: min(520px, 92vw);
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            box-shadow: 0 18px 45px rgba(15, 23, 42, .28);
            padding: 1rem 1rem .85rem;
        }

        .dark .mpr-delete-reason-modal {
            background: #0f172a;
            border-color: #334155;
            box-shadow: 0 22px 48px rgba(2, 6, 23, .65);
        }

        .mpr-delete-reason-title {
            font-size: 1rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: .35rem;
        }

        .dark .mpr-delete-reason-title {
            color: #f1f5f9;
        }

        .mpr-delete-reason-help {
            font-size: .82rem;
            color: #475569;
            margin-bottom: .6rem;
        }

        .dark .mpr-delete-reason-help {
            color: #94a3b8;
        }

        .mpr-delete-reason-input {
            width: 100%;
            border: 1px solid #cbd5e1;
            border-radius: .75rem;
            padding: .65rem .8rem;
            font-size: .86rem;
            color: #0f172a;
            resize: vertical;
            background: #ffffff;
            font-family: inherit;
        }

        .mpr-delete-reason-input:focus {
            border-color: #3b82f6;
            outline: none;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, .18);
        }

        .dark .mpr-delete-reason-input {
            background: #020617;
            border-color: #475569;
            color: #f1f5f9;
        }

        .mpr-delete-reason-actions {
            display: flex;
            justify-content: flex-end;
            gap: .6rem;
            margin-top: .8rem;
        }

        .mpr-delete-reason-cancel {
            padding: .5rem .85rem;
            border-radius: .65rem;
            border: 1px solid #cbd5e1;
            background: #f8fafc;
            color: #334155;
            font-weight: 700;
            font-size: .82rem;
            cursor: pointer;
        }

        .mpr-delete-reason-cancel:hover {
            background: #eef2f7;
        }

        .dark .mpr-delete-reason-cancel {
            background: #111827;
            border-color: #475569;
            color: #cbd5e1;
        }

        .dark .mpr-delete-reason-cancel:hover {
            background: #1f2937;
        }

        .mpr-delete-reason-confirm {
            padding: .5rem .9rem;
            border-radius: .65rem;
            border: 1px solid #dc2626;
            background: #dc2626;
            color: #ffffff;
            font-weight: 800;
            font-size: .82rem;
            cursor: pointer;
        }

        .mpr-delete-reason-confirm:hover {
            background: #b91c1c;
            border-color: #b91c1c;
        }

        .dark .mpr-delete-reason-confirm {
            background: #ef4444;
            border-color: #ef4444;
            color: #0f172a;
        }

        .dark .mpr-delete-reason-confirm:hover {
            background: #f87171;
            border-color: #f87171;
        }

        .mpr-btn-submit {
            padding: 0.65rem 1.5rem;
            border: none;
            background: linear-gradient(135deg, #10b981, #059669);
            color: #fff;
            border-radius: 0.75rem;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 12px rgba(16, 185, 129, .25);
        }

        .mpr-btn-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(16, 185, 129, .35);
        }

        .mpr-btn-submit svg {
            width: 1.1rem;
            height: 1.1rem;
        }

        /* ── Empty State ── */
        .mpr-empty-state {
            text-align: center;
            padding: 3rem;
            background: #ffffff;
            border-radius: 1rem;
            border: 1px dashed #cbd5e1;
            color: #64748b;
        }

        .dark .mpr-empty-state {
            background: #1e293b;
            border-color: #334155;
            color: #94a3b8;
        }
    

