/* ═══════════════════════════════════════════════════════════════════
   CLAIMS PORTAL — CENTRALISED STYLESHEET (Site.css)

   All page styles used to live in a <style> block on each .aspx page.
   They now live here instead, one section per page. Every page's <body>
   tag carries a unique scope class (e.g. class="pg-dashboard"), and every
   rule below is scoped under that class. This is deliberate: several
   pages reuse the same class name (e.g. .status-badge, .form-control,
   .header-right) but need different rules, so scoping prevents one
   page's styling from leaking into another.

   To add a new page: give its <body> a new pg-* class, add a new
   section below scoped the same way, and link this file from its <head>.
   To restyle an existing page: find that page's section (search this
   file for its filename in the section header comment) and edit there.
   ═══════════════════════════════════════════════════════════════════ */

/* -- Universal reset (identical on every page) -- */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* -- Shared base body typography + background --
   Applies to every page except the two login screens, which override
   the background below (centered gradient card layout instead of the
   app-shell layout used elsewhere). */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f5f7fa; }

/* ══════════════════════════════════════════════════════════════════════
   LOGIN PAGE  (Login.aspx)
   ══════════════════════════════════════════════════════════════════════ */
body.pg-login { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center; }
.pg-login .login-container { background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            width: 100%;
            max-width: 450px; }
.pg-login .logo-section { text-align: center;
            margin-bottom: 30px; }
.pg-login .logo-section h1 { color: #667eea;
            font-size: 28px;
            margin-bottom: 5px; }
.pg-login .logo-section p { color: #666;
            font-size: 14px; }
.pg-login .form-group { margin-bottom: 20px; }
.pg-login .form-group label { display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 14px; }
.pg-login .form-control { width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 14px;
            transition: border-color 0.3s; }
.pg-login .form-control:focus { outline: none;
            border-color: #667eea; }
.pg-login select.form-control { cursor: pointer; }
.pg-login .btn-login { width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s; }
.pg-login .btn-login:hover { transform: translateY(-2px); }
.pg-login .btn-login:active { transform: translateY(0); }
.pg-login .error-message { background: #fee;
            border: 1px solid #fcc;
            color: #c33;
            padding: 12px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-size: 14px; }
.pg-login .footer-text { text-align: center;
            margin-top: 20px;
            color: #999;
            font-size: 12px; }
.pg-login .required { color: #c33; }

/* ══════════════════════════════════════════════════════════════════════
   MEMBER LOOKUP PAGE  (MemberLookup.aspx)
   ══════════════════════════════════════════════════════════════════════ */
.pg-member-lookup .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white; padding: 20px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.pg-member-lookup .header-content { max-width: 1400px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center; }
.pg-member-lookup .header-left h1 { font-size: 24px; margin-bottom: 5px; }
.pg-member-lookup .header-left p { font-size: 14px; opacity: 0.9; }
.pg-member-lookup .header-right { display: flex; gap: 12px; }
.pg-member-lookup .btn-header { background: rgba(255,255,255,0.2); color: white;
            border: 1px solid rgba(255,255,255,0.4);
            padding: 8px 20px; border-radius: 5px; cursor: pointer; font-size: 14px;
            text-decoration: none; display: inline-block; }
.pg-member-lookup .btn-header:hover { background: rgba(255,255,255,0.3); }
.pg-member-lookup .container { max-width: 1400px; margin: 30px auto; padding: 0 40px; }
.pg-member-lookup .user-info { margin-bottom: 10px;
            font-size: 14px; }
.pg-member-lookup .search-card { background: white; padding: 30px; border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-bottom: 30px; }
.pg-member-lookup .search-card h2 { font-size: 20px; color: #333; margin-bottom: 20px; }
.pg-member-lookup .search-box { display: flex; gap: 12px; align-items: flex-start;
            max-width: 600px; }
.pg-member-lookup .search-input { flex: 1; padding: 12px 16px;
            border: 2px solid #e0e0e0; border-radius: 6px;
            font-size: 15px; font-family: inherit; transition: border-color 0.2s; }
.pg-member-lookup .search-input:focus { outline: none; border-color: #667eea; }
.pg-member-lookup .btn-search { background: #667eea; color: white; border: none;
            padding: 12px 28px; border-radius: 6px; cursor: pointer;
            font-size: 15px; font-weight: 600; transition: background 0.2s; }
.pg-member-lookup .btn-search:hover { background: #5568d3; }
.pg-member-lookup .search-hint { font-size: 13px; color: #888; margin-top: 8px; }
.pg-member-lookup .member-profile { display: none; }
.pg-member-lookup .member-profile.visible { display: block; }
.pg-member-lookup .profile-header { background: white; padding: 30px; border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-bottom: 20px;
            display: flex; gap: 30px; align-items: flex-start; }
.pg-member-lookup .profile-photo-wrapper { flex-shrink: 0; width: 140px; height: 140px;
            border-radius: 50%; overflow: hidden;
            border: 4px solid #f0f2ff; box-shadow: 0 4px 12px rgba(102,126,234,0.15); }
.pg-member-lookup .profile-photo { width: 100%; height: 100%; object-fit: cover; }
.pg-member-lookup .profile-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex; align-items: center; justify-content: center;
            font-size: 48px; font-weight: 700; color: white; }
.pg-member-lookup .profile-info { flex: 1; }
.pg-member-lookup .profile-name { font-size: 28px; font-weight: 700; color: #333; margin-bottom: 8px; }
.pg-member-lookup .profile-id { font-size: 15px; color: #667eea; font-weight: 600; margin-bottom: 20px; }
.pg-member-lookup .profile-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px; }
.pg-member-lookup .meta-item label { display: block; font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.pg-member-lookup .meta-item .value { font-size: 15px; color: #333; font-weight: 600; }
.pg-member-lookup .details-grid { display: grid; grid-template-columns: 1fr 1fr;
            gap: 20px; margin-bottom: 20px; }
.pg-member-lookup .detail-card { background: white; padding: 25px; border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.pg-member-lookup .detail-card h3 { font-size: 18px; color: #333; margin-bottom: 16px;
            padding-bottom: 10px; border-bottom: 2px solid #667eea; }
.pg-member-lookup .plan-badge { display: inline-block; padding: 6px 14px; border-radius: 16px;
            font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.pg-member-lookup .plan-copper { background: #ffebee; color: #c62828; }
.pg-member-lookup .plan-bronze { background: #fff3e0; color: #e65100; }
.pg-member-lookup .plan-silver { background: #e0f2f1; color: #00695c; }
.pg-member-lookup .plan-gold { background: #fff9c4; color: #f57f17; }
.pg-member-lookup .plan-platinum { background: #e8eaf6; color: #3949ab; }
.pg-member-lookup .limit-row { display: flex; justify-content: space-between; align-items: center;
            padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.pg-member-lookup .limit-row:last-child { border-bottom: none; }
.pg-member-lookup .limit-label { font-size: 14px; color: #666; }
.pg-member-lookup .limit-value { font-size: 16px; font-weight: 700; color: #2e7d32; }
.pg-member-lookup .item-list { list-style: none; padding: 0; margin: 0; }
.pg-member-lookup .item-list li { padding: 12px 14px; border: 1px solid #e8eaf6; border-radius: 6px;
            margin-bottom: 8px; background: #fafbff;
            display: flex; align-items: center; gap: 12px; }
.pg-member-lookup .item-icon { font-size: 20px; flex-shrink: 0; }
.pg-member-lookup .item-content { flex: 1; min-width: 0; }
.pg-member-lookup .item-name { font-size: 14px; font-weight: 600; color: #333; }
.pg-member-lookup .item-category { font-size: 12px; color: #888; margin-top: 2px; }
.pg-member-lookup .no-items { text-align: center; padding: 24px; color: #bbb; font-style: italic; }
.pg-member-lookup .message { padding: 15px 20px; border-radius: 6px; margin-bottom: 20px; }
.pg-member-lookup .message-error { background: #ffebee; border: 1px solid #ef5350; color: #c62828; }
.pg-member-lookup .message-info { background: #e3f2fd; border: 1px solid #42a5f5; color: #1565c0; }
.pg-member-lookup .full-width { grid-column: 1 / -1; }
.pg-member-lookup .status-banner { background: white; padding: 24px 28px; border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-bottom: 20px;
            border-left: 6px solid;
            display: flex; align-items: flex-start; gap: 20px; }
.pg-member-lookup .status-banner.good-standing { border-left-color: #4caf50;
            background: linear-gradient(to right, #e8f5e9 0%, #ffffff 100%); }
.pg-member-lookup .status-banner.warning { border-left-color: #ff9800;
            background: linear-gradient(to right, #fff3e0 0%, #ffffff 100%); }
.pg-member-lookup .status-banner.critical { border-left-color: #f44336;
            background: linear-gradient(to right, #ffebee 0%, #ffffff 100%); }
.pg-member-lookup .status-icon { font-size: 48px; flex-shrink: 0; line-height: 1; }
.pg-member-lookup .status-content { flex: 1; }
.pg-member-lookup .status-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pg-member-lookup .status-banner.good-standing .status-title { color: #2e7d32; }
.pg-member-lookup .status-banner.warning .status-title { color: #ef6c00; }
.pg-member-lookup .status-banner.critical .status-title { color: #c62828; }
.pg-member-lookup .status-message { font-size: 15px; line-height: 1.6; color: #555; }
.pg-member-lookup .status-details { margin-top: 12px; padding-top: 12px;
            border-top: 1px solid rgba(0,0,0,0.08); }
.pg-member-lookup .status-detail-item { font-size: 13px; color: #666; margin-top: 6px;
            display: flex; align-items: center; gap: 8px; }
.pg-member-lookup .status-detail-item strong { color: #333; }
.pg-member-lookup .full-width { grid-column: 1 / -1; }
@media (max-width: 900px) {
    .pg-member-lookup .details-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════
   PROVIDER DASHBOARD  (Dashboard.aspx)
   ══════════════════════════════════════════════════════════════════════ */
.pg-dashboard .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.pg-dashboard .header-content { max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center; }
.pg-dashboard .header-left h1 { font-size: 24px;
            margin-bottom: 5px; }
.pg-dashboard .header-left p { font-size: 14px;
            opacity: 0.9; }
.pg-dashboard .header-right { text-align: right; }
.pg-dashboard .user-info { margin-bottom: 10px;
            font-size: 14px; }
.pg-dashboard .btn-logout { background: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.4);
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s; }
.pg-dashboard .btn-logout:hover { background: rgba(255,255,255,0.3); }
.pg-dashboard .container { max-width: 1400px;
            margin: 30px auto;
            padding: 0 40px; }
.pg-dashboard .action-bar { background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center; }
.pg-dashboard .action-bar h2 { color: #333;
            font-size: 20px; }
.pg-dashboard .action-bar-right { display: flex;
            gap: 10px;
            align-items: center; }
.pg-dashboard .btn-new-claim { background: #667eea;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: transform 0.2s; }
.pg-dashboard .btn-new-claim:hover { transform: translateY(-2px);
            background: #5568d3; }
.pg-dashboard .btn-export-csv { background: #e8f5e9;
            color: #2e7d32;
            border: 1px solid #a5d6a7;
            padding: 10px 12px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            title: "Download CSV"; }
.pg-dashboard .btn-export-csv:hover { background: #c8e6c9; }
.pg-dashboard .claims-grid { background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            overflow-x: auto; }
.pg-dashboard .gridview { width: 100%;
            border-collapse: collapse; }
.pg-dashboard .gridview th { background: #f8f9fa;
            padding: 15px 12px;
            text-align: left;
            font-weight: 600;
            color: #555;
            border-bottom: 2px solid #e0e0e0;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px; }
.pg-dashboard .gridview td { padding: 15px 12px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 14px; }
.pg-dashboard .gridview tr:hover { background-color: #f8f9fa; }
.pg-dashboard .status-badge { display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600; }
.pg-dashboard .status-pending { background: #e3f2fd;
            color: #1976d2; }
.pg-dashboard .status-approved { background: #e8f5e9;
            color: #388e3c; }
.pg-dashboard .status-declined { background: #ffebee;
            color: #d32f2f; }
.pg-dashboard .status-under-review { background: #fff3e0;
            color: #f57c00; }
.pg-dashboard .status-arbitration { background: #f3e5f5;
            color: #7b1fa2; }
.pg-dashboard .btn-view { background: #667eea;
            color: white;
            border: none;
            padding: 6px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px; }
.pg-dashboard .btn-view:hover { background: #5568d3; }
.pg-dashboard .empty-state { text-align: center;
            padding: 60px 20px;
            color: #999; }
.pg-dashboard .empty-state h3 { margin-bottom: 10px;
            color: #666; }
.pg-dashboard .stats-row { display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 20px; }
.pg-dashboard .stat-card { background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.pg-dashboard .stat-card h3 { font-size: 14px;
            color: #666;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px; }
.pg-dashboard .stat-card .value { font-size: 28px;
            font-weight: 700;
            color: #333; }
.pg-dashboard .amount { font-weight: 600;
            color: #2e7d32; }
.pg-dashboard .filter-bar { background: white;
            padding: 18px 24px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            display: flex;
            align-items: flex-end;
            gap: 20px;
            flex-wrap: wrap; }
.pg-dashboard .filter-group { display: flex;
            flex-direction: column;
            gap: 6px; }
.pg-dashboard .filter-group label { font-size: 12px;
            font-weight: 600;
            color: #555;
            text-transform: uppercase;
            letter-spacing: 0.5px; }
.pg-dashboard .filter-date { padding: 9px 12px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.2s;
            width: 160px; }
.pg-dashboard .filter-date:focus { outline: none; border-color: #667eea; }
.pg-dashboard .filter-text { padding: 9px 12px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.2s;
            width: 180px; }
.pg-dashboard .filter-text:focus { outline: none; border-color: #667eea; }
.pg-dashboard .btn-filter { background: #667eea;
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            height: 40px;
            transition: background 0.2s; }
.pg-dashboard .btn-filter:hover { background: #5568d3; }
.pg-dashboard .btn-clear-filter { background: #f0f0f0;
            color: #555;
            border: none;
            padding: 10px 18px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            height: 40px;
            transition: background 0.2s; }
.pg-dashboard .btn-clear-filter:hover { background: #e0e0e0; }
.pg-dashboard .filter-error { color: #d32f2f;
            font-size: 13px;
            align-self: flex-end;
            padding-bottom: 10px; }

/* ══════════════════════════════════════════════════════════════════════
   NEW CLAIM PAGE  (NewClaim.aspx)
   ══════════════════════════════════════════════════════════════════════ */
.pg-new-claim .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white; padding: 20px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.pg-new-claim .header-content { max-width: 1200px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center; }
.pg-new-claim .header-left h1 { font-size: 24px; margin-bottom: 5px; }
.pg-new-claim .header-left p { font-size: 14px; opacity: 0.9; }
.pg-new-claim .btn-back { background: rgba(255,255,255,0.2); color: white;
            border: 1px solid rgba(255,255,255,0.4);
            padding: 8px 20px; border-radius: 5px; cursor: pointer; font-size: 14px; }
.pg-new-claim .btn-back:hover { background: rgba(255,255,255,0.3); }
.pg-new-claim .container { max-width: 1200px; margin: 30px auto; padding: 0 40px; }
.pg-new-claim .form-container { background: white; padding: 30px; border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-bottom: 20px; }
.pg-new-claim .form-title { font-size: 24px; color: #333; margin-bottom: 10px; }
.pg-new-claim .form-subtitle { color: #666; margin-bottom: 30px; }
.pg-new-claim .form-row { display: grid; grid-template-columns: 1fr 1fr;
            gap: 20px; margin-bottom: 20px; }
.pg-new-claim .form-group { margin-bottom: 20px; }
.pg-new-claim .form-group label { display: block; margin-bottom: 8px; color: #333; font-weight: 600; font-size: 14px; }
.pg-new-claim .required { color: #764ba2; }
.pg-new-claim .form-control { width: 100%; padding: 12px 15px;
            border: 2px solid #e0e0e0; border-radius: 5px;
            font-size: 14px; font-family: inherit; transition: border-color 0.3s; }
.pg-new-claim .form-control:focus { outline: none; border-color: #667eea; }
.pg-new-claim .form-control[readonly] { background: #f8f9fa; color: #555; cursor: default; }
.pg-new-claim select.form-control { cursor: pointer; }
.pg-new-claim textarea.form-control { resize: vertical; min-height: 100px; }
.pg-new-claim .validator { color: #764ba2; font-size: 12px; margin-top: 5px; display: block; }
.pg-new-claim .help-text { font-size: 12px; color: #666; margin-top: 5px; }
.pg-new-claim .message { padding: 15px; border-radius: 5px; margin-bottom: 20px; }
.pg-new-claim .message-success { background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32; }
.pg-new-claim .message-error { background: #ffebee; border: 1px solid #f44336; color: #764ba2; }
.pg-new-claim .button-group { display: flex; gap: 15px; margin-top: 30px;
            padding-top: 20px; border-top: 1px solid #e0e0e0; }
.pg-new-claim .btn-submit { background: #667eea; color: white; border: none;
            padding: 14px 30px; border-radius: 5px; cursor: pointer;
            font-size: 16px; font-weight: 600; transition: transform 0.2s; }
.pg-new-claim .btn-submit:hover { transform: translateY(-2px); background: #5568d3; }
.pg-new-claim .btn-cancel { background: #e0e0e0; color: #333; border: none;
            padding: 14px 30px; border-radius: 5px; cursor: pointer;
            font-size: 16px; font-weight: 600; }
.pg-new-claim .btn-cancel:hover { background: #d0d0d0; }
.pg-new-claim .member-verify-row { display: flex; gap: 10px; align-items: flex-start; }
.pg-new-claim .member-verify-row .form-control { flex: 1; }
.pg-new-claim .btn-verify { background: #2e7d32; color: white; border: none;
            padding: 12px 24px; border-radius: 5px; cursor: pointer;
            font-size: 14px; font-weight: 600; white-space: nowrap;
            transition: background 0.2s; }
.pg-new-claim .btn-verify:hover { background: #1b5e20; }
.pg-new-claim .btn-verify:disabled { background: #ccc; cursor: not-allowed; }
.pg-new-claim .member-status { padding: 10px 14px; border-radius: 5px;
            font-size: 13px; margin-top: 8px; display: none; }
.pg-new-claim .member-status.verified { background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32;
            display: block; }
.pg-new-claim .member-status.not-found { background: #ffebee; border: 1px solid #f44336; color: #764ba2;
            display: block; }
.pg-new-claim .member-status.verified:before { content: "✓ "; font-weight: bold; }
.pg-new-claim .member-status.not-found:before { content: "✗ "; font-weight: bold; }
.pg-new-claim .section-card { background: white; padding: 30px; border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-bottom: 20px; }
.pg-new-claim .section-header { display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 20px; padding-bottom: 12px;
            border-bottom: 2px solid #667eea; }
.pg-new-claim .section-header h2 { font-size: 20px; color: #333; }
.pg-new-claim .btn-add-item { background: #667eea; color: white; border: none;
            padding: 9px 18px; border-radius: 5px; cursor: pointer;
            font-size: 14px; font-weight: 600; }
.pg-new-claim .btn-add-item:hover { background: #5568d3; }
.pg-new-claim .items-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pg-new-claim .items-table th { background: #f0f2ff; color: #444; font-size: 12px;
            text-transform: uppercase; letter-spacing: 0.5px;
            padding: 10px 12px; text-align: left; border-bottom: 2px solid #667eea; }
.pg-new-claim .items-table th.text-right, .pg-new-claim .items-table td.text-right { text-align: right; }
.pg-new-claim .items-table th.text-center, .pg-new-claim .items-table td.text-center { text-align: center; }
.pg-new-claim .items-table td { padding: 8px 12px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.pg-new-claim .items-table tr:last-child td { border-bottom: none; }
.pg-new-claim .item-input { width: 100%; padding: 7px 10px;
            border: 1px solid #e0e0e0; border-radius: 4px;
            font-size: 13px; font-family: inherit; }
.pg-new-claim .item-input:focus { outline: none; border-color: #667eea; }
.pg-new-claim .item-input.num { text-align: right; }
.pg-new-claim .item-total-cell { font-weight: 600; color: #333; white-space: nowrap; }
.pg-new-claim .btn-remove { background: #ffebee; color: #764ba2; border: none;
            padding: 5px 10px; border-radius: 4px; cursor: pointer;
            font-size: 14px; }
.pg-new-claim .btn-remove:hover { background: #ffcdd2; }
.pg-new-claim .items-footer { display: flex; justify-content: flex-end;
            margin-top: 16px; padding-top: 16px; border-top: 1px solid #e0e0e0; }
.pg-new-claim .grand-total-box { background: #f0f2ff; border-left: 4px solid #667eea;
            padding: 12px 20px; border-radius: 6px;
            display: flex; align-items: center; gap: 20px; }
.pg-new-claim .grand-total-box .gt-label { font-size: 14px; color: #444; text-transform: uppercase; letter-spacing: 0.5px; }
.pg-new-claim .grand-total-box .gt-value { font-size: 24px; font-weight: 700; color: #2e7d32; min-width: 140px; text-align: right; }
.pg-new-claim .no-items-row td { text-align: center; color: #aaa; font-style: italic; padding: 24px; }
.pg-new-claim .items-error { color: #764ba2; font-size: 13px; margin-top: 8px; display: none; }
.pg-new-claim .ac-dropdown { display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #667eea;
            border-top: none;
            border-radius: 0 0 5px 5px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 4px 8px rgba(0,0,0,0.12); }
.pg-new-claim .ac-item { padding: 8px 12px;
            font-size: 13px;
            color: #333;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0; }
.pg-new-claim .ac-item:last-child { border-bottom: none; }
.pg-new-claim .ac-item:hover, .pg-new-claim .ac-item.ac-active { background: #f0f2ff; color: #667eea; }
.pg-new-claim .attach-optional { font-size: 13px; color: #999; font-weight: 400; margin-left: 8px; }
.pg-new-claim .attach-drop-zone { border: 2px dashed #c5cae9; border-radius: 8px;
            padding: 32px 20px; text-align: center; background: #fafbff;
            cursor: pointer; transition: border-color 0.2s, background 0.2s;
            user-select: none; }
.pg-new-claim .attach-drop-zone:hover { border-color: #667eea; background: #f0f2ff; }
.pg-new-claim .attach-zone-icon { font-size: 40px; margin-bottom: 10px; }
.pg-new-claim .attach-zone-text { font-size: 15px; color: #444; margin-bottom: 6px; }
.pg-new-claim .attach-zone-hint { font-size: 12px; color: #999; }
.pg-new-claim .file-list { margin-top: 14px; }
.pg-new-claim .file-item { display: flex; align-items: center; gap: 12px;
            padding: 10px 14px; border: 1px solid #e8eaf6;
            border-radius: 6px; margin-bottom: 8px; background: #fafbff; }
.pg-new-claim .file-icon { font-size: 24px; flex-shrink: 0; }
.pg-new-claim .file-info { flex: 1; min-width: 0; }
.pg-new-claim .file-name { font-size: 14px; font-weight: 600; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pg-new-claim .file-size { font-size: 12px; color: #888; margin-top: 2px; }
.pg-new-claim .btn-clear-files { background: #e0e0e0; color: #555; border: none;
            padding: 7px 16px; border-radius: 4px; cursor: pointer; font-size: 13px; margin-top: 6px; }
.pg-new-claim .btn-clear-files:hover { background: #d0d0d0; }
.pg-new-claim .attach-error { color: #764ba2; font-size: 13px; margin-top: 10px; }

/* ══════════════════════════════════════════════════════════════════════
   CLAIM DETAILS PAGE  (ClaimDetails.aspx)
   ══════════════════════════════════════════════════════════════════════ */
.pg-claim-details .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.pg-claim-details .header-content { max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center; }
.pg-claim-details .header-left h1 { font-size: 24px;
            margin-bottom: 5px; }
.pg-claim-details .header-left p { font-size: 14px;
            opacity: 0.9; }
.pg-claim-details .btn-back { background: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.4);
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            text-decoration: none;
            display: inline-block; }
.pg-claim-details .btn-back:hover { background: rgba(255,255,255,0.3); }
.pg-claim-details .container { max-width: 1200px;
            margin: 30px auto;
            padding: 0 40px; }
.pg-claim-details .claim-header { background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px; }
.pg-claim-details .claim-id { font-size: 28px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 700; }
.pg-claim-details .status-badge { display: inline-block;
            padding: 6px 16px;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px; }
.pg-claim-details .status-pending { background: #e3f2fd; color: #1976d2; }
.pg-claim-details .status-approved { background: #e8f5e9; color: #388e3c; }
.pg-claim-details .status-declined { background: #ffebee; color: #d32f2f; }
.pg-claim-details .status-under-review { background: #fff3e0; color: #f57c00; }
.pg-claim-details .status-arbitration { background: #f3e5f5; color: #7b1fa2; }
.pg-claim-details .claim-meta { display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0; }
.pg-claim-details .meta-item label { display: block;
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px; }
.pg-claim-details .meta-item .value { font-size: 16px;
            color: #333;
            font-weight: 600; }
.pg-claim-details .details-grid { display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px; }
.pg-claim-details .detail-card { background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.pg-claim-details .detail-card h3 { font-size: 18px;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea; }
.pg-claim-details .detail-row { margin-bottom: 15px; }
.pg-claim-details .detail-row label { display: block;
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px; }
.pg-claim-details .detail-row .value { font-size: 15px;
            color: #333; }
.pg-claim-details .full-width { grid-column: 1 / -1; }
.pg-claim-details .amount-display { font-size: 32px;
            color: #2e7d32;
            font-weight: 700; }
.pg-claim-details .diagnosis-text { background: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #667eea;
            white-space: pre-wrap;
            font-size: 14px;
            line-height: 1.6; }
.pg-claim-details .no-data { color: #999;
            font-style: italic; }
.pg-claim-details .items-table { width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            font-size: 14px; }
.pg-claim-details .items-table th { background: #f0f2ff;
            color: #444;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 10px 14px;
            text-align: left;
            border-bottom: 2px solid #667eea; }
.pg-claim-details .items-table th.text-right, .pg-claim-details .items-table td.text-right { text-align: right; }
.pg-claim-details .items-table th.text-center, .pg-claim-details .items-table td.text-center { text-align: center; }
.pg-claim-details .items-table td { padding: 10px 14px;
            border-bottom: 1px solid #f0f0f0;
            color: #333;
            vertical-align: middle; }
.pg-claim-details .items-table tr:last-child td { border-bottom: none; }
.pg-claim-details .items-table tr:hover td { background: #fafbff; }
.pg-claim-details .items-table .row-num { color: #aaa;
            font-size: 13px;
            width: 40px; }
.pg-claim-details .items-total-row { display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
            padding: 14px 16px;
            background: #f0f2ff;
            border-radius: 6px;
            border-left: 4px solid #667eea; }
.pg-claim-details .items-total-row .total-label { font-size: 14px;
            font-weight: 600;
            color: #444;
            text-transform: uppercase;
            letter-spacing: 0.5px; }
.pg-claim-details .items-total-row .total-amount { font-size: 22px;
            font-weight: 700;
            color: #2e7d32; }
.pg-claim-details .items-card-header { display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea; }
.pg-claim-details .items-card-header h3 { margin: 0;
            padding: 0;
            border: none;
            font-size: 18px;
            color: #333; }
.pg-claim-details .items-count-badge { background: #667eea;
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px; }
.pg-claim-details .no-items-msg { text-align: center;
            padding: 30px;
            color: #999;
            font-style: italic; }
.pg-claim-details .attach-file-list { list-style: none; padding: 0; margin: 0; }
.pg-claim-details .attach-file-list li { display: flex; align-items: center; gap: 14px;
            padding: 12px 16px; border: 1px solid #e8eaf6; border-radius: 6px;
            margin-bottom: 10px; background: #fafbff;
            transition: background 0.15s; }
.pg-claim-details .attach-file-list li:hover { background: #f0f2ff; }
.pg-claim-details .attach-file-icon { font-size: 24px; flex-shrink: 0; }
.pg-claim-details .attach-file-name { flex: 1; font-size: 14px; font-weight: 600; color: #333;
                             white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pg-claim-details .attach-file-actions { display: flex; gap: 8px; flex-shrink: 0; }
.pg-claim-details .btn-attach-view { background: #667eea; color: white; border: none;
            padding: 6px 14px; border-radius: 4px; cursor: pointer;
            font-size: 12px; font-weight: 600; text-decoration: none;
            display: inline-block; }
.pg-claim-details .btn-attach-view:hover { background: #5568d3; }
.pg-claim-details .btn-attach-dl { background: #e8eaf6; color: #3949ab; border: none;
            padding: 6px 14px; border-radius: 4px; cursor: pointer;
            font-size: 12px; font-weight: 600; text-decoration: none;
            display: inline-block; }
.pg-claim-details .btn-attach-dl:hover { background: #c5cae9; }
.pg-claim-details .no-attach-msg { text-align: center; padding: 20px; color: #bbb; font-style: italic; font-size: 14px; }

/* ══════════════════════════════════════════════════════════════════════
   REVIEWER LOGIN PAGE  (Reviewer/ReviewerLogin.aspx)
   ══════════════════════════════════════════════════════════════════════ */
body.pg-reviewer-login { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center; }
.pg-reviewer-login .login-container { background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            width: 100%;
            max-width: 450px; }
.pg-reviewer-login .logo-section { text-align: center;
            margin-bottom: 30px; }
.pg-reviewer-login .logo-section h1 { color: #667eea;
            font-size: 28px;
            margin-bottom: 5px; }
.pg-reviewer-login .logo-section p { color: #666;
            font-size: 14px; }
.pg-reviewer-login .form-group { margin-bottom: 20px; }
.pg-reviewer-login .form-group label { display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 14px; }
.pg-reviewer-login .form-control { width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 14px;
            transition: border-color 0.3s; }
.pg-reviewer-login .form-control:focus { outline: none;
            border-color: #667eea; }
.pg-reviewer-login .btn-login { width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s; }
.pg-reviewer-login .btn-login:hover { transform: translateY(-2px); }
.pg-reviewer-login .btn-login:active { transform: translateY(0); }
.pg-reviewer-login .error-message { background: #fee;
            border: 1px solid #fcc;
            color: #c33;
            padding: 12px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-size: 14px; }
.pg-reviewer-login .footer-text { text-align: center;
            margin-top: 20px;
            color: #999;
            font-size: 12px; }
.pg-reviewer-login .required { color: #c33; }

/* ══════════════════════════════════════════════════════════════════════
   REVIEWER DASHBOARD  (Reviewer/ReviewerDashboard.aspx)
   ══════════════════════════════════════════════════════════════════════ */
.pg-reviewer-dashboard .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.pg-reviewer-dashboard .header-content { max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center; }
.pg-reviewer-dashboard .header-left h1 { font-size: 24px;
            margin-bottom: 5px; }
.pg-reviewer-dashboard .header-left p { font-size: 14px;
            opacity: 0.9; }
.pg-reviewer-dashboard .header-right { text-align: right; }
.pg-reviewer-dashboard .user-info { margin-bottom: 10px;
            font-size: 14px; }
.pg-reviewer-dashboard .btn-logout { background: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.4);
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s; }
.pg-reviewer-dashboard .btn-logout:hover { background: rgba(255,255,255,0.3); }
.pg-reviewer-dashboard .container { max-width: 1400px;
            margin: 30px auto;
            padding: 0 40px; }
.pg-reviewer-dashboard .access-message { background: #fff3e0;
            border: 1px solid #ffcc80;
            color: #e65100;
            padding: 14px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px; }
.pg-reviewer-dashboard .stats-row { display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 20px; }
.pg-reviewer-dashboard .stat-card { background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.pg-reviewer-dashboard .stat-card h3 { font-size: 14px;
            color: #666;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px; }
.pg-reviewer-dashboard .stat-card .value { font-size: 28px;
            font-weight: 700;
            color: #333; }
.pg-reviewer-dashboard .action-bar { background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px; }
.pg-reviewer-dashboard .action-bar h2 { color: #333;
            font-size: 20px; }
.pg-reviewer-dashboard .claims-grid { background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            overflow-x: auto; }
.pg-reviewer-dashboard .gridview { width: 100%;
            border-collapse: collapse; }
.pg-reviewer-dashboard .gridview th { background: #f8f9fa;
            padding: 15px 12px;
            text-align: left;
            font-weight: 600;
            color: #555;
            border-bottom: 2px solid #e0e0e0;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px; }
.pg-reviewer-dashboard .gridview td { padding: 15px 12px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 14px; }
.pg-reviewer-dashboard .gridview tr:hover { background-color: #f8f9fa; }
.pg-reviewer-dashboard .status-badge { display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600; }
.pg-reviewer-dashboard .status-pending { background: #e3f2fd; color: #1976d2; }
.pg-reviewer-dashboard .status-approved { background: #e8f5e9; color: #388e3c; }
.pg-reviewer-dashboard .status-declined { background: #ffebee; color: #d32f2f; }
.pg-reviewer-dashboard .btn-view { background: #667eea;
            color: white;
            border: none;
            padding: 6px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px; }
.pg-reviewer-dashboard .btn-view:hover { background: #5568d3; }
.pg-reviewer-dashboard .empty-state { text-align: center;
            padding: 60px 20px;
            color: #999; }
.pg-reviewer-dashboard .empty-state h3 { margin-bottom: 10px;
            color: #666; }
.pg-reviewer-dashboard .amount { font-weight: 600;
            color: #2e7d32; }
.pg-reviewer-dashboard .days-remaining { font-size: 12px;
            color: #999; }
.pg-reviewer-dashboard .days-remaining.expiring { color: #d32f2f;
            font-weight: 600; }

/* ══════════════════════════════════════════════════════════════════════
   REVIEWER CLAIM DETAILS PAGE  (Reviewer/ReviewerClaimDetails.aspx)
   ══════════════════════════════════════════════════════════════════════ */
.pg-reviewer-claim-details .header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.pg-reviewer-claim-details .header-content { max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center; }
.pg-reviewer-claim-details .header-left h1 { font-size: 24px;
            margin-bottom: 5px; }
.pg-reviewer-claim-details .header-left p { font-size: 14px;
            opacity: 0.9; }
.pg-reviewer-claim-details .btn-back { background: rgba(255,255,255,0.2);
            color: white;
            border: 1px solid rgba(255,255,255,0.4);
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            text-decoration: none;
            display: inline-block; }
.pg-reviewer-claim-details .btn-back:hover { background: rgba(255,255,255,0.3); }
.pg-reviewer-claim-details .container { max-width: 1200px;
            margin: 30px auto;
            padding: 0 40px; }
.pg-reviewer-claim-details .message { padding: 15px; border-radius: 5px; margin-bottom: 20px; }
.pg-reviewer-claim-details .message-success { background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32; }
.pg-reviewer-claim-details .message-error { background: #ffebee; border: 1px solid #f44336; color: #764ba2; }
.pg-reviewer-claim-details .claim-header { background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px; }
.pg-reviewer-claim-details .claim-id { font-size: 28px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 700; }
.pg-reviewer-claim-details .status-badge { display: inline-block;
            padding: 6px 16px;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            margin-right: 10px; }
.pg-reviewer-claim-details .status-pending { background: #e3f2fd; color: #1976d2; }
.pg-reviewer-claim-details .status-approved { background: #e8f5e9; color: #388e3c; }
.pg-reviewer-claim-details .status-declined { background: #ffebee; color: #d32f2f; }
.pg-reviewer-claim-details .status-under-review { background: #fff3e0; color: #f57c00; }
.pg-reviewer-claim-details .status-arbitration { background: #f3e5f5; color: #7b1fa2; }
.pg-reviewer-claim-details .review-status-line { margin-bottom: 20px; }
.pg-reviewer-claim-details .review-status-line .label-text { font-size: 13px;
            color: #666;
            margin-right: 8px; }
.pg-reviewer-claim-details .claim-meta { display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0; }
.pg-reviewer-claim-details .meta-item label { display: block;
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px; }
.pg-reviewer-claim-details .meta-item .value { font-size: 16px;
            color: #333;
            font-weight: 600; }
.pg-reviewer-claim-details .details-grid { display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px; }
.pg-reviewer-claim-details .detail-card { background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.pg-reviewer-claim-details .detail-card h3 { font-size: 18px;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea; }
.pg-reviewer-claim-details .detail-row { margin-bottom: 15px; }
.pg-reviewer-claim-details .detail-row label { display: block;
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px; }
.pg-reviewer-claim-details .detail-row .value { font-size: 15px;
            color: #333; }
.pg-reviewer-claim-details .full-width { grid-column: 1 / -1; }
.pg-reviewer-claim-details .amount-display { font-size: 32px;
            color: #2e7d32;
            font-weight: 700; }
.pg-reviewer-claim-details .diagnosis-text { background: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #667eea;
            white-space: pre-wrap;
            font-size: 14px;
            line-height: 1.6; }
.pg-reviewer-claim-details .no-data { color: #999;
            font-style: italic; }
.pg-reviewer-claim-details .items-table { width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            font-size: 14px; }
.pg-reviewer-claim-details .items-table th { background: #f0f2ff;
            color: #444;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 10px 14px;
            text-align: left;
            border-bottom: 2px solid #667eea; }
.pg-reviewer-claim-details .items-table th.text-right, .pg-reviewer-claim-details .items-table td.text-right { text-align: right; }
.pg-reviewer-claim-details .items-table th.text-center, .pg-reviewer-claim-details .items-table td.text-center { text-align: center; }
.pg-reviewer-claim-details .items-table td { padding: 10px 14px;
            border-bottom: 1px solid #f0f0f0;
            color: #333;
            vertical-align: middle; }
.pg-reviewer-claim-details .items-table tr:last-child td { border-bottom: none; }
.pg-reviewer-claim-details .items-total-row { display: flex;
            justify-content: flex-end;
            gap: 12px;
            padding: 14px;
            font-size: 15px; }
.pg-reviewer-claim-details .total-label { color: #666; font-weight: 600; }
.pg-reviewer-claim-details .total-amount { color: #2e7d32; font-weight: 700; font-size: 18px; }
.pg-reviewer-claim-details .items-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.pg-reviewer-claim-details .items-count-badge { background: #f0f2ff; color: #667eea; padding: 3px 10px; border-radius: 10px; font-size: 12px; font-weight: 600; }
.pg-reviewer-claim-details .no-items-msg { text-align: center; padding: 20px; color: #bbb; font-style: italic; font-size: 14px; }
.pg-reviewer-claim-details .attach-file-list { list-style: none; }
.pg-reviewer-claim-details .attach-file-list li { display: flex; align-items: center; gap: 12px;
            padding: 10px 14px; border-bottom: 1px solid #f0f0f0; }
.pg-reviewer-claim-details .attach-file-list li:last-child { border-bottom: none; }
.pg-reviewer-claim-details .attach-file-icon { font-size: 20px; }
.pg-reviewer-claim-details .attach-file-name { flex: 1; font-size: 14px; font-weight: 600; color: #333;
                             white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pg-reviewer-claim-details .attach-file-actions { display: flex; gap: 8px; flex-shrink: 0; }
.pg-reviewer-claim-details .btn-attach-view { background: #667eea; color: white; border: none;
            padding: 6px 14px; border-radius: 4px; cursor: pointer;
            font-size: 12px; font-weight: 600; text-decoration: none;
            display: inline-block; }
.pg-reviewer-claim-details .btn-attach-view:hover { background: #5568d3; }
.pg-reviewer-claim-details .btn-attach-dl { background: #e8eaf6; color: #3949ab; border: none;
            padding: 6px 14px; border-radius: 4px; cursor: pointer;
            font-size: 12px; font-weight: 600; text-decoration: none;
            display: inline-block; }
.pg-reviewer-claim-details .btn-attach-dl:hover { background: #c5cae9; }
.pg-reviewer-claim-details .no-attach-msg { text-align: center; padding: 20px; color: #bbb; font-style: italic; font-size: 14px; }
.pg-reviewer-claim-details .decision-card { background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.pg-reviewer-claim-details .decision-card h3 { font-size: 18px;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea; }
.pg-reviewer-claim-details .form-control { width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-size: 14px;
            font-family: inherit;
            resize: vertical;
            transition: border-color 0.3s; }
.pg-reviewer-claim-details .form-control:focus { outline: none; border-color: #667eea; }
.pg-reviewer-claim-details .decision-actions { display: flex;
            gap: 12px;
            margin-top: 16px; }
.pg-reviewer-claim-details .btn-approve { background: #388e3c; color: white; border: none;
            padding: 12px 28px; border-radius: 5px; cursor: pointer;
            font-size: 14px; font-weight: 600; transition: background 0.2s; }
.pg-reviewer-claim-details .btn-approve:hover { background: #2e7d32; }
.pg-reviewer-claim-details .btn-reject { background: #d32f2f; color: white; border: none;
            padding: 12px 28px; border-radius: 5px; cursor: pointer;
            font-size: 14px; font-weight: 600; transition: background 0.2s; }
.pg-reviewer-claim-details .btn-reject:hover { background: #b71c1c; }
.pg-reviewer-claim-details .decision-made-note { color: #666; font-size: 14px; margin-bottom: 4px; }
