@media print {
    @page {
        margin: 10mm; /* Narrower margins for more content */
    }

    /* Reset layouts for print */
    html, body {
        height: auto !important;
        background-color: white !important;
        font-size: 12pt; /* Standard legal document font size */
    }

    #root, .app-wrapper, main {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        position: static !important;
    }

    /* Hide non-printable elements */
    .no-print, header, footer:not(.page-footer), .sidebar, button, select, input:not([type="text"]), .diagnostics {
        display: none !important;
    }

    /* Print Area styling */
    #print-area {
        display: block !important;
        width: 100% !important;
    }

    /* Exact A4 Page constraints */
    .document-page {
        page-break-after: always;
        break-after: page;
        margin: 0 auto !important;
        padding: 0 !important;
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        border: none !important;
        overflow: hidden !important;
    }

    .content {
        line-height: 1.8 !important;
    }

    /* Table Fixes */
    table { 
        width: 100% !important;
        border-collapse: collapse !important;
        page-break-inside: auto; 
    }
    tr { page-break-inside: avoid; page-break-after: auto; }
    
    .avoid-break {
        page-break-inside: avoid;
        break-inside: avoid;
    }
}

@media screen {
    .workspace-container {
        background-color: #f1f5f9;
        padding: 40px 0;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .document-page {
        padding: 75px;
        box-sizing: border-box;
        overflow: hidden;
        background: white;
        position: relative;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .page-content {
        width: 100%;
        height: auto;
        word-break: break-word;
        overflow-wrap: anywhere;
        white-space: normal;
        flex: 1;
    }

    .page-header {
        margin-bottom: 15mm;
        border-bottom: 1px solid #edf2f7;
        padding-bottom: 5mm;
        font-size: 0.9em;
        color: #718096;
        flex-shrink: 0;
    }

    .page-footer {
        margin-top: 10mm;
        border-top: 1px solid #edf2f7;
        padding-top: 5mm;
        font-size: 0.9em;
        color: #718096;
        text-align: center;
        flex-shrink: 0;
    }

    .document-body {
        flex: 1;
        font-family: 'Noto Sans Gujarati', 'Shruti', sans-serif;
        font-size: 14pt;
        line-height: 1.2;
        letter-spacing: 0px;
        word-spacing: 0px;
        margin: 0;
        padding: 0;
        color: #000;
        text-align: justify;
        overflow: visible !important;
        word-break: break-word;
        overflow-wrap: anywhere;
        white-space: pre-wrap;
    }

    /* Variable Inline Stability */
    .template-variable {
        display: inline;
        white-space: pre-wrap;
        word-break: break-word;
        margin: 0;
        padding: 0;
        color: #1e3a8a;
        font-weight: 700;
        background-color: rgba(253, 224, 71, 0.3); /* Yellow highlights */
        border-bottom: 1px solid #d1d5db;
    }

    .template-variable:empty::before {
        content: "________";
        color: #9ca3af;
        font-weight: 400;
    }

    /* Gujarati Legal Section Rendering */
    .legal-section-block {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }

    .legal-info-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: baseline;
    }

    .document-body p, .page-content p {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
        min-height: unset !important;
        text-align: justify;
        break-inside: auto;
        white-space: pre-wrap;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .document-body div, .page-content div, .document-body span, .page-content span {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
    }

    .document-body table, .page-content table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed;
        border-collapse: collapse !important;
        margin-bottom: 1em;
    }

    .document-body td, .document-body th, .page-content td, .page-content th {
        border: 1px solid #cbd5e1;
        padding: 8px;
        word-break: break-word;
        overflow-wrap: anywhere;
        white-space: normal;
    }
}

.document-page {
    font-family: 'Noto Sans Gujarati', 'Shruti', sans-serif;
    font-size: 14pt;
    line-height: 1.2;
    letter-spacing: 0px;
    word-spacing: 0px;
}

.var-highlight {
    background-color: #fef9c3;
    padding: 0 4px;
    font-weight: 700;
    border-bottom: 1px solid #fde047;
    color: #1e293b;
    border-radius: 2px;
}

/* Premium UI Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.premium-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-premium {
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium:active {
    transform: scale(0.95);
}

/* Modal Animations */
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.animate-modal {
    animation: modalIn 0.3s ease-out forwards;
}

/* Custom Scrollbar Modern */
.custom-scrollbar {
    scroll-behavior: smooth;
}
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* Gujarati Text Polish */
.gujarati-title {
    letter-spacing: 0.01em;
    line-height: 1.4;
}
/* --- Virtual Workspace Structure --- */
.a4-page { position: relative; background: white; margin: 24px auto; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); box-sizing: border-box; }
.a4-header { position: absolute; top: 40px; left: 70px; right: 70px; height: 80px; border-bottom: 1px solid #eee; overflow: hidden; font-size: 11px; }
.a4-content { padding-top: 140px; padding-bottom: 120px; padding-left: 70px; padding-right: 70px; }
.a4-footer { position: absolute; bottom: 40px; left: 70px; right: 70px; height: 70px; border-top: 1px solid #eee; overflow: hidden; font-size: 10px; color: #666; }
.a4-header p, .a4-footer p { margin: 0; }
/* Preview Sticky Stability */
.preview-container {
    position: sticky;
    top: 24px;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.print-wrapper {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.15s ease-out forwards;
}

.docx-preview-container {
width: 100%;
min-height: 100%;
}

.docx-wrapper {
background: #e5e7eb;
padding: 30px;
}

.docx {
background: white;
margin: auto;
box-shadow:
0 10px 30px rgba(0,0,0,0.15);
}

.docx > section {
margin-bottom: 30px;
}

.docx-preview {
background: white;
padding: 40px;
min-height: 100%;
}

.docx-preview-wrapper {
display: flex;
justify-content: center;
}

.docx-preview section.docx {
box-shadow:
0 0 10px rgba(0,0,0,.08);
}

.docx-wrapper {
background: #f3f4f6;
padding: 24px;
width: 100%;
overflow: auto;
}

.docx {
background: white;
margin: 0 auto;
box-shadow: 0 0 12px rgba(0,0,0,.12);
transform-origin: top center;
}

/* ═══════════════════════════════════════════════════════════════
   PreviewModal — Professional Document Preview Modal Styles
   ═══════════════════════════════════════════════════════════════ */

/* Backdrop */
.preview-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 16px;
    animation: previewBackdropIn 0.25s ease-out forwards;
}

@keyframes previewBackdropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Modal Container */
.preview-modal-container {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 1100px;
    height: 92vh;
    max-height: 92vh;
    border-radius: 20px;
    box-shadow:
        0 25px 60px -12px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: previewModalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes previewModalIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ── Close Button ── */
.preview-modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 999999999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #334155;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.preview-modal-close-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: scale(1.1);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.08);
}

.preview-modal-close-btn:active {
    transform: scale(0.95);
    background: #e2e8f0;
}

.preview-modal-close-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.preview-modal-close-btn span {
    display: block;
    margin-top: -1px;
}

/* ── Header ── */
.preview-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    padding-right: 64px; /* space for close button */
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.preview-modal-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-modal-header-icon {
    font-size: 24px;
    line-height: 1;
}

.preview-modal-title {
    font-size: 18px;
    font-weight: 900;
    color: #0f2460;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
    font-family: 'Noto Sans Gujarati', sans-serif;
}

.preview-modal-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 2px 0 0 0;
}

.preview-modal-header-hint {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

.preview-modal-header-hint kbd {
    display: inline-block;
    padding: 2px 6px;
    background: #e2e8f0;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Inter', monospace;
    color: #64748b;
    border: 1px solid #cbd5e1;
    margin-right: 3px;
}

/* ── Body / Scrollable Content ── */
.preview-modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px;
    background: #f1f5f9;
    position: relative;
}

/* ── Loading Overlay ── */
.preview-modal-loading {
    position: absolute;
    inset: 0;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 30;
    animation: fadeIn 0.15s ease-out forwards;
}

.preview-modal-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preview-modal-loading-text {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin: 0 0 4px 0;
    font-family: 'Noto Sans Gujarati', sans-serif;
}

.preview-modal-loading-subtext {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    margin: 0;
}

/* ── Error ── */
.preview-modal-error {
    margin-bottom: 16px;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 12px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.preview-modal-error-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.preview-modal-error-title {
    font-weight: 800;
    margin: 0 0 4px 0;
    font-family: 'Noto Sans Gujarati', sans-serif;
}

.preview-modal-error-detail {
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

/* ── DOCX Render Wrapper ── */
.preview-modal-docx-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.preview-modal-docx-target {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    min-height: 500px;
    width: 100%;
    max-width: 900px;
}

/* Center Gujarati content inside the docx render */
.preview-modal-docx-target .docx-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
    .preview-modal-backdrop {
        padding: 8px;
    }

    .preview-modal-container {
        height: 96vh;
        max-height: 96vh;
        border-radius: 16px;
    }

    .preview-modal-close-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }

    .preview-modal-header {
        padding: 12px 16px;
        padding-right: 56px;
    }

    .preview-modal-title {
        font-size: 15px;
    }

    .preview-modal-header-hint {
        display: none;
    }

    .preview-modal-body {
        padding: 12px;
    }

    .preview-modal-docx-target {
        border-radius: 8px;
    }
}

/* ── Responsive: Large screens ── */
@media (min-width: 1400px) {
    .preview-modal-container {
        max-width: 1200px;
    }

    .preview-modal-close-btn {
        width: 44px;
        height: 44px;
        font-size: 24px;
        top: 14px;
        right: 14px;
    }
}

/* ==========================================================================
   DocumentPreview Component Styles - Strictly Scoped to .dp-container
   ========================================================================== */
.dp-container {
    font-family: 'Outfit', 'Inter', 'Noto Sans Gujarati', sans-serif;
    color: #1e293b;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    min-height: 100%;
}

/* Glassmorphic Header */
.dp-header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

/* Scoped Cards */
.dp-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.dp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -4px rgba(15, 23, 42, 0.08);
}

/* Header & Status Badges */
.dp-status-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dp-status-ready {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.dp-status-warning {
    background-color: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.dp-status-info {
    background-color: #f0f9ff;
    color: #0284c7;
    border: 1px solid #bae6fd;
}

/* Premium Buttons */
.dp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    user-select: none;
}

.dp-btn:active {
    transform: scale(0.97);
}

.dp-btn-docx {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.dp-btn-docx:hover:not(:disabled) {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.dp-btn-pdf {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
}

.dp-btn-pdf:hover:not(:disabled) {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.dp-btn-secondary {
    background: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
}

.dp-btn-secondary:hover:not(:disabled) {
    background: #f8fafc;
    color: #0f172a;
    border-color: #94a3b8;
}

.dp-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Variable Summary Details */
.dp-var-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.5);
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.dp-var-row:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.dp-var-name {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dp-var-value {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    text-align: right;
    max-width: 60%;
}

.dp-var-empty {
    color: #94a3b8;
    font-style: italic;
    font-weight: 400;
}

/* Document Paper Canvas Workspace */
.dp-preview-workspace {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 32px 16px;
    background: #e2e8f0;
    min-height: 500px;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
    overflow: auto;
}

/* Realistic sheet of paper representation */
.dp-paper-container {
    background: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    width: 100%;
    max-width: 800px;
    padding: 0;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

/* Styling internal docx-preview wrapper elements without bleeding */
.dp-paper-container .docx-wrapper {
    background: #ffffff !important;
    padding: 0 !important;
    overflow: visible !important;
    width: 100% !important;
}

.dp-paper-container .docx {
    box-shadow: none !important;
    margin: 0 !important;
    padding: 50px 60px !important;
    width: 100% !important;
    min-height: unset !important;
}

/* Skeleton Loading Screens */
@keyframes dpPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
}

.dp-skeleton-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 12px;
    animation: dpPulse 1.5s infinite ease-in-out;
}

.dp-skeleton-title {
    height: 20px;
    width: 40%;
    background: #cbd5e1;
    border-radius: 6px;
    margin-bottom: 24px;
    animation: dpPulse 1.5s infinite ease-in-out;
}

/* Toggle Switch Styling */
.dp-switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
}

.dp-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dp-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 34px;
}

.dp-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.dp-switch input:checked + .dp-slider {
    background-color: #2563eb;
}

.dp-switch input:checked + .dp-slider:before {
    transform: translateX(18px);
}

/* Scoped Variable Highlights */
.dp-highlight-filled {
    background-color: #d1fae5 !important;
    color: #065f46 !important;
    border-radius: 4px !important;
    padding: 0px 4px !important;
    font-weight: 700 !important;
    border: 1px solid #a7f3d0 !important;
    display: inline !important;
}

.dp-highlight-missing {
    background-color: #fee2e2 !important;
    color: #991b1b !important;
    border-radius: 4px !important;
    padding: 0px 4px !important;
    font-weight: 700 !important;
    border: 1px dashed #fca5a5 !important;
    display: inline !important;
}

/* Active pulse outline for focused form field mapping in preview */
@keyframes dpPulseFocus {
    0%, 100% {
        box-shadow: 0 0 0 0px rgba(59, 130, 246, 0.7);
        background-color: rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
        background-color: rgba(59, 130, 246, 0.45);
    }
}
.dp-pulse-active {
    animation: dpPulseFocus 0.8s ease-in-out 3;
    border-radius: 4px;
    padding: 0px 4px !important;
    outline: 2px solid #2563eb !important;
    outline-offset: 2px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-none {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}




