/* =========================
   ROOT / GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f4f7fb;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --head-bg: #eef2f7;
    --primary: #1a7a89;
    --primary-dark: #0f5c66;
    --secondary-bg: #eef2f7;
    --secondary-text: #1f2937;
    --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    --radius: 14px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* =========================
   MAIN CONTENT
========================= */
.main-content {
    padding: 24px;
    min-height: 100vh;
}

/* =========================
   TOPBAR
========================= */
.topbar {
    background: var(--card);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    box-shadow: var(--shadow);
    border: 1px solid #edf1f5;
}

.topbar h1 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.topbar p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* =========================
   SECTION CARD
========================= */
.section-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow);
    border: 1px solid #edf1f5;
}

.section-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.section-card h2 i {
    color: var(--primary);
    font-size: 22px;
}

/* =========================
   TABLE WRAP
========================= */
.table-wrap {
    overflow-x: auto;
    border-radius: 12px;
}

/* =========================
   TABLE
========================= */
table {
    width: 100%;
    min-width: 1050px;
    border-collapse: collapse;
    background: #fff;
}

thead th {
    background: var(--head-bg);
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    padding: 14px 14px;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

tbody td {
    font-size: 14px;
    color: var(--text);
    padding: 14px 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

tbody tr {
    transition: background 0.2s ease;
}

tbody tr:hover {
    background: #f8fafc;
}

/* =========================
   BUTTONS
========================= */
.btn {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
}

.btn.secondary {
    background: var(--secondary-bg);
    color: var(--secondary-text);
    border: 1px solid #dde5ec;
}

/* =========================
   FOOTER
========================= */
.footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--muted);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .main-content {
        padding: 16px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .topbar h1 {
        font-size: 24px;
    }

    .section-card {
        padding: 18px 16px;
    }

    .section-card h2 {
        font-size: 20px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .footer {
        margin-top: 18px;
        font-size: 13px;
    }
}

/* =========================
   STATUS BADGES
========================= */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid transparent;
}

/* Payment Received / Confirmed / Approved */
.badge.confirmed {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

/* Pending */
.badge.pending {
    background: #fef3c7;
    color: #92400e;
    border-color: #fcd34d;
}

/* Rejected / Cancelled */
.badge.rejected {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fca5a5;
}

/* Info / Dispatched / Processing */
.badge.info {
    background: #dbeafe;
    color: #1d4ed8;
    border-color: #93c5fd;
}

/* Optional extra states */
.badge.success {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
}

.badge.warning {
    background: #fef3c7;
    color: #92400e;
    border-color: #fbbf24;
}

.badge.danger {
    background: #fee2e2;
    color: #991b1b;
    border-color: #f87171;
}

.badge.neutral {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
}


/* MODEL POP */

.modal {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: none;

    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.5);

    z-index: 999999;
    /* IMPORTANT */
}

/* =========================
   MODAL BOX
========================= */

.modal-box {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 92vh;

    background: #ffffff;

    border-radius: 16px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28);
}

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

.modal-header {

    background: linear-gradient(135deg,
            #1e3a8a,
            #1d4ed8);

    color: white;

    padding: 22px 28px;

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

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header h2 {

    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
}

.modal-header p {

    font-size: 14px;
    opacity: 0.9;
}

/* CLOSE ICON */

.close-icon {

    width: 40px;
    height: 40px;

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

    font-size: 20px;

    border-radius: 10px;

    cursor: pointer;

    background: rgba(255, 255, 255, 0.15);

    transition: all 0.2s ease;
}

.close-icon:hover {

    background: rgba(255, 255, 255, 0.25);

    transform: rotate(90deg);
}

/* =========================
   BODY
========================= */

.modal-body {

    flex: 1;

    overflow-y: auto;

    padding: 24px;

    background: #f4f7fb;

    scroll-behavior: smooth;
}

/* =========================
   SECTION CARD
========================= */

.section-card {

    background: #ffffff;

    border-radius: 14px;

    padding: 22px;

    margin-bottom: 18px;

    border: 1px solid #e5e7eb;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.06);
}

/* =========================
   SECTION TITLE
========================= */
 

.section-title i {

    color: #2563eb;
}

/* =========================
   GRID
========================= */
 

.full-width {
    grid-column: span 4;
}

/* =========================
   FORM GROUP
========================= */
  
 
/* =========================
   BUTTON COLORS
========================= */

.btn {

    padding: 10px 18px;

    border-radius: 8px;

    font-weight: 600;

    cursor: pointer;

    border: none;

    transition: all 0.2s ease;
}

.btn:hover {

    transform: translateY(-1px);

    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.12);
}

/* PRIMARY */

.btn.primary {

    background:
        linear-gradient(135deg,
            #2563eb,
            #1d4ed8);

    color: white;
}

/* SECONDARY */

.btn.secondary {

    background: #f1f5f9;

    border: 1px solid #e2e8f0;

    color: #1f2937;
}

/* DANGER */

.btn.danger {

    background: #fee2e2;

    color: #dc2626;

    border: 1px solid #fca5a5;
}

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

 /* =========================
   SECTION TITLE
========================= */

.section-title {

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 18px;
    font-weight: 700;

    color: #1f2937;

    margin-bottom: 18px;

    position: relative;
}

/* underline bar */

.section-title::after {

    content: "";

    position: absolute;

    bottom: -6px;
    left: 0;

    width: 40px;
    height: 3px;

    background: #2563eb;

    border-radius: 4px;
}

/* =========================
   SECTION ICON
========================= */

.section-icon {

    width: 40px;
    height: 40px;

    border-radius: 10px;

    background: #eaf1ff;

    color: #2563eb;

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

    font-size: 16px;

    flex-shrink: 0;
}

/* =========================
   FORM GRID
========================= */

.form-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-bottom: 20px;
}
 
/* =========================
   FORM GROUP
========================= */

.form-group {

    display: flex;

    flex-direction: column;
}

.form-group label {

    font-size: 13px;

    font-weight: 600;

    color: #475569;

    margin-bottom: 6px;
}

/* =========================
   INPUT WITH ICON
========================= */

.input-with-icon {

    position: relative;
}

.input-with-icon i {

    position: absolute;

    left: 12px;

    top: 50%;

    transform: translateY(-50%);

    color: #64748b;

    font-size: 14px;
}

/* inputs */

.input-with-icon input {

    width: 100%;

    height: 42px;

    padding-left: 38px;

    padding-right: 12px;

    border-radius: 8px;

    border: 1px solid #d1d5db;

    font-size: 14px;

    background: #f9fafb;

    transition: all 0.2s ease;
}

textarea {

    width: 100%;

    min-height: 90px;

    padding: 10px 12px;

    border-radius: 8px;

    border: 1px solid #d1d5db;

    font-size: 14px;

    background: #f9fafb;

    resize: vertical;

    transition: all 0.2s ease;
}

/* focus */

input:focus,
textarea:focus {

    outline: none;

    border-color: #2563eb;

    box-shadow:
        0 0 0 2px rgba(37, 99, 235, 0.12);
}

/* readonly */

input[readonly] {

    background: #eef2f7;

    color: #334155;
}

/* =========================
   FILE INPUT
========================= */

input[type="file"] {

    border: 2px dashed #cbd5e1;

    background: #f8fafc;

    padding: 8px;

    border-radius: 10px;

    cursor: pointer;
}
 
 
/* =========================
   EXISTING FILE
========================= */

.existing-file {

    margin-top: 8px;

    padding: 8px 10px;

    background: #ecfdf5;

    border: 1px solid #86efac;

    border-radius: 8px;

    font-size: 13px;

    color: #166534;

    display: flex;
    align-items: center;

    gap: 8px;
}

/* =========================
   NO FILE BOX
========================= */

.no-file-box {

    margin-top: 8px;

    padding: 10px;

    background: #fef2f2;

    border: 1px solid #fecaca;

    border-radius: 8px;

    font-size: 13px;

    color: #991b1b;

    display: flex;
    align-items: center;

    gap: 8px;
}

/* =========================
   SMALL BUTTON
========================= */

.small-btn {

    padding: 8px 14px;

    font-size: 13px;

    border-radius: 8px;
}

/* =========================
   HORIZONTAL LINE
========================= */

hr {

    border: none;

    height: 1px;

    background: #e5e7eb;

    margin: 22px 0;
}

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

@media (max-width: 1024px) {

    .form-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .form-grid {

        grid-template-columns: 1fr;
    }

   

}

/* =========================
   PDF MODAL BACKDROP
========================= */

.pdf-modal {
    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    display: none;

    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.65);

    z-index: 999999;
}

/* =========================
   MODAL BOX
========================= */

.pdf-modal-box {

    width: 96%;
    max-width: 1200px;
    height: 92vh;

    background: #ffffff;

    border-radius: 16px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35);

    animation: fadeInScale 0.25s ease;
}

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

.pdf-modal-header {

    background: linear-gradient(
        135deg,
        #1e3a8a,
        #1d4ed8
    );

    color: #ffffff;

    padding: 20px 26px;

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

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

.pdf-modal-header h2 {

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 2px;
}

.pdf-modal-header p {

    font-size: 13px;
    opacity: 0.9;
}

/* =========================
   HEADER ACTIONS
========================= */

.pdf-modal-actions {

    display: flex;
    gap: 10px;
}

/* =========================
   VIEWER WRAP
========================= */

.pdf-viewer-wrap {

    flex: 1;

    position: relative;

    background: #f4f7fb;

    overflow: hidden;
}

/* =========================
   PDF IFRAME
========================= */

.pdf-frame {

    width: 100%;
    height: 100%;

    border: none;

    display: none;
}

/* =========================
   SKELETON LOADER
========================= */

.pdf-skeleton-wrap {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    gap: 14px;

    padding: 20px;

    background: #ffffff;
}

/* Skeleton Elements */

.pdf-skeleton {

    background: #e5e7eb;

    border-radius: 8px;
}

.pdf-skeleton.line {

    height: 16px;
}

.pdf-skeleton.page {

    flex: 1;
}

.w60 {
    width: 60%;
}

.w40 {
    width: 40%;
}

/* =========================
   SHIMMER EFFECT
========================= */

.shimmer {

    position: relative;

    overflow: hidden;
}

.shimmer::after {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );

    animation: shimmerMove 1.4s infinite;
}

@keyframes shimmerMove {

    100% {
        left: 100%;
    }
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeInScale {

    from {

        opacity: 0;
        transform: scale(0.95);

    }

    to {

        opacity: 1;
        transform: scale(1);

    }
}

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

@media (max-width: 768px) {

    .pdf-modal-box {

        width: 100%;
        height: 100vh;

        border-radius: 0;
    }

    .pdf-modal-header {

        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

    .pdf-modal-actions {

        width: 100%;

        justify-content: flex-end;
    }

}

/* Header icon spacing */

.modal-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer button group */

.footer-actions {
    display: flex;
    gap: 10px;
}

/* Close button icon */

.close-icon {
    width: 42px;
    height: 42px;

    border-radius: 10px;

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

    background: rgba(255,255,255,0.15);

    border: none;

    cursor: pointer;
}
/* =========================
   SALES ORDER DETAILS FIX
========================= */

/* card container */

.billing-card {

    background: #ffffff;

    border-radius: 14px;

    padding: 22px;

    border: 1px solid #e5e7eb;

    box-shadow:
        0 4px 14px rgba(0,0,0,0.06);

    margin-top: 10px;
}

/* grid layout */
.billing-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-top: 10px;
}

/* form group spacing */

.billing-grid .form-group {

    display: flex;

    flex-direction: column;
}

/* labels */

.billing-grid label {

    font-size: 13px;

    font-weight: 600;

    color: #475569;

    margin-bottom: 6px;
}

/* inputs */

.billing-grid input[type="text"] {

    width: 100%;

    height: 42px;

    padding: 10px 12px;

    border-radius: 8px;

    border: 1px solid #d1d5db;

    background: #f9fafb;

    font-size: 14px;

    transition: all 0.2s ease;
}

/* textarea */
.billing-grid textarea {

    min-height: 44px;

    height: 44px;

    resize: none;
}

/* focus */

.billing-grid input:focus,
.billing-grid textarea:focus {

    outline: none;

    border-color: #2563eb;

    box-shadow:
        0 0 0 2px rgba(37,99,235,0.12);
}

/* =========================
   FILE INPUT STYLING
========================= */

.billing-grid input[type="file"] {

    width: 100%;

    padding: 10px;

    border-radius: 10px;

    border: 2px dashed #cbd5e1;

    background: #f8fafc;

    cursor: pointer;

    transition: 0.2s;
}

/* hover */

.billing-grid input[type="file"]:hover {

    border-color: #2563eb;

    background: #eef2ff;
}

/* =========================
   EXISTING FILE
========================= */

.existing-file {

    margin-top: 8px;

    padding: 8px 10px;

    background: #ecfdf5;

    border: 1px solid #86efac;

    border-radius: 8px;

    font-size: 13px;

    color: #166534;

    display: flex;

    align-items: center;

    gap: 8px;
}

/* =========================
   BUTTON AREA ALIGNMENT
========================= */

.modal-footer {

    background: #ffffff;

    border-top: 1px solid #e5e7eb;

    padding: 14px 18px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    position: sticky;

    bottom: 0;

    z-index: 5;

}

/* right buttons */

.footer-actions {

    display: flex;

    gap: 10px;
}

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

@media (max-width: 1024px) {

    .billing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .billing-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   REJECT POPUP FIX
========================= */

#rejectPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: none;

    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.55);

    z-index: 99999;   /* IMPORTANT */
}

/* main view modal */

#viewModal {
    z-index: 9999;
}
/* =========================
   REJECT POPUP OVERLAY
========================= */

.reject-popup {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: none;

    align-items: center;
    justify-content: center;

    background: rgba(15, 23, 42, 0.55);

    backdrop-filter: blur(5px);

    z-index: 99999;
}


/* =========================
   POPUP BOX
========================= */

.reject-box {

    width: 420px;
    max-width: 95%;

    background: #ffffff;

    border-radius: 16px;

    padding: 24px 26px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.25);

    animation: popupFade 0.25s ease;

    text-align: left;
}


/* =========================
   TITLE
========================= */

.reject-box h3 {

    font-size: 20px;

    font-weight: 700;

    color: #1e293b;

    margin-bottom: 14px;

    display: flex;

    align-items: center;

    gap: 8px;
}


/* =========================
   TEXTAREA
========================= */

.reject-box textarea {

    width: 100%;

    height: 110px;

    resize: none;

    padding: 12px 14px;

    font-size: 14px;

    border-radius: 10px;

    border: 1px solid #cbd5e1;

    background: #f8fafc;

    outline: none;

    transition: all 0.2s ease;

    font-family: inherit;
}

.reject-box textarea:focus {

    border-color: #2563eb;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.12);
}


/* =========================
   ACTION BUTTONS
========================= */

.reject-actions {

    display: flex;

    justify-content: flex-end;

    gap: 12px;

    margin-top: 18px;
}


/* =========================
   BUTTON BASE
========================= */

.reject-actions .btn {

    padding: 10px 18px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;

    border: none;

    cursor: pointer;

    transition: all 0.2s ease;
}


/* Cancel Button */

.reject-actions .btn.secondary {

    background: #f1f5f9;

    color: #334155;
}

.reject-actions .btn.secondary:hover {

    background: #e2e8f0;
}


/* Submit Button */

.reject-actions .btn.danger {

    background: #ef4444;

    color: white;
}

.reject-actions .btn.danger:hover {

    background: #dc2626;

    transform: translateY(-1px);

    box-shadow:
        0 6px 14px rgba(220, 38, 38, 0.25);
}


/* =========================
   ANIMATION
========================= */

@keyframes popupFade {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

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

}

/* =========================
   REJECT STATUS CARD
========================= */

.status-card {

    margin-top: 18px;

    padding: 14px 16px;

    border-radius: 10px;

    font-size: 14px;

    border: 1px solid;

}

/* Cancelled */

.status-card.cancelled {

    background: #fef2f2;

    border-color: #fca5a5;

    color: #991b1b;

}

.status-title {

    font-weight: 700;

    margin-bottom: 4px;
}

.status-reason {

    font-weight: 500;
}

/* =========================
   FILTERS WRAPPER
========================= */

.filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.filter-input,
.filter-select {
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-input {
    flex: 2;
    min-width: 200px;
}

.filter-select {
    flex: 1;
    min-width: 160px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.filter-input:focus,
.filter-select:focus {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.filter-input::placeholder {
    color: #9ca3af;
    font-size: 13px;
}

/* Apply & Reset buttons */
.filters-wrapper .btn.secondary,
.filters-wrapper .btn.primary {
    height: 38px;
    padding: 0 18px;
    font-size: 14px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Result count below filters */
#resultCount {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
    padding: 0 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .filters-wrapper {
        gap: 8px;
        padding: 12px;
    }

    .filter-input,
    .filter-select {
        min-width: 100%;
        flex: unset;
        width: 100%;
    }

    .filters-wrapper .btn {
        flex: 1;
    }
}

.scheme-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.scheme-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.scheme-table th {
    background: #f8fafc;
    color: #111827;
    font-weight: 700;
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.scheme-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}

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