/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ulj9zw27bm] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fc;
}

main[b-ulj9zw27bm] {
    flex: 1;
}

#blazor-error-ui[b-ulj9zw27bm] {
    background: #fef9c3;
    border-top: 1px solid #fde68a;
    bottom: 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #92400e;
    font-size: 0.9rem;
}

    #blazor-error-ui .dismiss[b-ulj9zw27bm] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.top-bar[b-ulj9zw27bm] {
    display: flex;
    justify-content: flex-end;
    padding: 0.6rem 1.5rem 0 1.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ── Navbar ── */
.top-navbar[b-fedl8un13m] {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 0 1.5rem;
    height: 3.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 #e8eaf0, 0 4px 24px rgba(99,102,241,0.07);
    gap: 1rem;
    border-bottom: 1.5px solid #e0e3ea;
}

.nav-controls[b-fedl8un13m] {
    display: flex;
    gap: 0.25rem;
}

.nav-btn[b-fedl8un13m] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    color: #6b7280;
    transition: background 0.15s, color 0.15s;
}

.nav-btn:hover[b-fedl8un13m] {
    background: #f3f4f6;
    color: #374151;
}

.navbar-brand[b-fedl8un13m] {
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #4f46e5, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.nav-links[b-fedl8un13m] {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

/* ── Nav links ── */
.nav-link[b-fedl8un13m] {
    color: #374151;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

    .nav-link:hover[b-fedl8un13m] {
        background: #f3f4f6;
        color: #111827;
    }

    .nav-link.active[b-fedl8un13m] {
        background: #ede9fe;
        color: #4f46e5;
        font-weight: 600;
    }

/* ── Dropdown wrapper ── */
.dropdown[b-fedl8un13m] {
    position: relative;
    outline: none;
}

.dropdown-btn[b-fedl8un13m] {
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-btn:hover[b-fedl8un13m] {
        background: #f3f4f6;
        color: #111827;
    }

.dropdown:focus-within .dropdown-btn[b-fedl8un13m] {
    background: #ede9fe;
    color: #4f46e5;
    font-weight: 600;
}

.nav-icon[b-fedl8un13m] {
    font-size: 1.2rem;
}

/* Chevron rotation */
.chevron[b-fedl8un13m] {
    display: inline-block;
    font-size: 0.9rem;
    line-height: 1;
    transition: transform 0.2s ease;
    color: #9ca3af;
}

.dropdown:focus-within .chevron[b-fedl8un13m] {
    transform: rotate(180deg);
    color: #4f46e5;
}

/* ── Dropdown menu ── */
.dropdown-menu[b-fedl8un13m] {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e0e3ea;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(99,102,241,0.08);
    padding: 0.5rem 0;
    z-index: 2000;
    animation: dropIn-b-fedl8un13m 0.18s cubic-bezier(0.16,1,0.3,1) forwards;
}

.dropdown:hover .dropdown-menu[b-fedl8un13m],
.dropdown:hover .dropdown-menu[b-fedl8un13m],
.dropdown:focus-within .dropdown-menu[b-fedl8un13m] {
    display: block;
}

.dropdown-left .dropdown-menu[b-fedl8un13m] {
    left: auto;
    right: 0;
}

@keyframes dropIn-b-fedl8un13m {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-left .dropdown-menu[b-fedl8un13m] {
    left: auto;
    right: 0;
}

@keyframes dropIn-b-fedl8un13m {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Dropdown items ── */
.dropdown-item[b-fedl8un13m] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.2px;
    transition: background 0.12s, color 0.12s;
    border-radius: 0;
}

    .dropdown-item:hover[b-fedl8un13m] {
        background: #f5f3ff;
        color: #4f46e5;
    }

.item-icon[b-fedl8un13m] {
    font-size: 0.4rem;
    color: #a78bfa;
    flex-shrink: 0;
}

.dropdown-item + .dropdown-item[b-fedl8un13m] {
    border-top: 1px solid #f3f4f6;
}

.navbar-brand[b-fedl8un13m] {
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #4f46e5, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

.nav-links[b-fedl8un13m] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ── Nav links ── */
.nav-link[b-fedl8un13m] {
    color: #374151;
    text-decoration: none;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.3px;
}

    .nav-link:hover[b-fedl8un13m] {
        background: #f3f4f6;
        color: #111827;
    }

    .nav-link.active[b-fedl8un13m] {
        background: linear-gradient(90deg, #ede9fe, #e0f2fe);
        color: #4f46e5;
        font-weight: 600;
    }

/* ── Dropdown wrapper ── */
.dropdown[b-fedl8un13m] {
    position: relative;
    outline: none;
}

.dropdown-btn[b-fedl8un13m] {
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.3px;
}

    .dropdown-btn:hover[b-fedl8un13m] {
        background: #f3f4f6;
        color: #111827;
    }

.dropdown:focus-within .dropdown-btn[b-fedl8un13m] {
    background: linear-gradient(90deg, #ede9fe, #e0f2fe);
    color: #4f46e5;
    font-weight: 600;
}

/* Chevron rotation */
.chevron[b-fedl8un13m] {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.25s ease;
    color: #9ca3af;
}

.dropdown:focus-within .chevron[b-fedl8un13m] {
    transform: rotate(180deg);
    color: #4f46e5;
}

/* ── Dropdown menu ── */
.dropdown-menu[b-fedl8un13m] {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border: 1.5px solid #e8eaf0;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(99,102,241,0.13), 0 2px 8px rgba(0,0,0,0.06);
    padding: 0.5rem;
    z-index: 2000;
    animation: dropIn-b-fedl8un13m 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
    font-size: 1.1rem;
}

.dropdown:focus-within .dropdown-menu[b-fedl8un13m] {
    display: block;
}

@keyframes dropIn-b-fedl8un13m {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── Dropdown items ── */
.dropdown-item[b-fedl8un13m] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 9px;
    transition: background 0.15s, color 0.15s, transform 0.15s;
    position: relative;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.2px;
}

    .dropdown-item:hover[b-fedl8un13m] {
        background: linear-gradient(90deg, #ede9fe, #e0f2fe);
        color: #4f46e5;
        transform: translateX(3px);
    }

.item-icon[b-fedl8un13m] {
    font-size: 0.4rem;
    color: #a78bfa;
    flex-shrink: 0;
}

.dropdown-item + .dropdown-item[b-fedl8un13m] {
    border-top: 1px solid #f3f4f6;
}
/* /Components/Pages/Master/ItemList.razor.rz.scp.css */
.page-title[b-gey9zwhmhl] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.btn-back[b-gey9zwhmhl] {
    background: linear-gradient(90deg, #6b7280, #9ca3af);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: opacity 0.15s;
}

.btn-back:hover[b-gey9zwhmhl] {
    opacity: 0.9;
}

.item-list-container[b-gey9zwhmhl] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    overflow-x: auto;
}

.item-table[b-gey9zwhmhl] {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
}

.item-table th[b-gey9zwhmhl] {
    text-align: left;
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
    background: #f9fafb;
}

.item-table th:first-child[b-gey9zwhmhl] {
    border-top-left-radius: 8px;
}

.item-table th:last-child[b-gey9zwhmhl] {
    border-top-right-radius: 8px;
}

.item-table td[b-gey9zwhmhl] {
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.item-table tr:hover td[b-gey9zwhmhl] {
    background: #fafbfc;
}

.input-field[b-gey9zwhmhl] {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    color: #374151;
    background: #ffffff;
}

.input-field:focus[b-gey9zwhmhl] {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-action[b-gey9zwhmhl] {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 5px;
    transition: opacity 0.15s;
}

.btn-action:hover[b-gey9zwhmhl] {
    opacity: 0.85;
}

.btn-edit[b-gey9zwhmhl] {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    color: white;
}

.btn-delete[b-gey9zwhmhl] {
    background: linear-gradient(90deg, #ef4444, #f87171);
    color: white;
}

.btn-save[b-gey9zwhmhl] {
    background: linear-gradient(90deg, #10b981, #34d399);
    color: white;
}

.btn-cancel[b-gey9zwhmhl] {
    background: linear-gradient(90deg, #6b7280, #9ca3af);
    color: white;
}

.no-items[b-gey9zwhmhl] {
    text-align: center;
    color: #6b7280;
    padding: 2rem;
    font-size: 1rem;
}
/* /Components/Pages/Master/ItemMaster.razor.rz.scp.css */
.page-title[b-2q0htacxae] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.header-actions[b-2q0htacxae] {
    float: right;
    margin-top: 0.5rem;
}

.btn-item-list[b-2q0htacxae] {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s;
}

.btn-item-list:hover[b-2q0htacxae] {
    opacity: 0.9;
}

.item-master-container[b-2q0htacxae] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    position: relative;
    z-index: 10;
}

.table-wrapper[b-2q0htacxae] {
    overflow-x: auto;
    position: relative;
    z-index: 1;
}

.item-table[b-2q0htacxae] {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
}

.item-table th[b-2q0htacxae] {
    text-align: left;
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
    background: #f9fafb;
}

.item-table th:first-child[b-2q0htacxae] {
    border-top-left-radius: 8px;
}

.item-table th:last-child[b-2q0htacxae] {
    border-top-right-radius: 8px;
    width: 50px;
}

.item-table td[b-2q0htacxae] {
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.item-table tr:hover td[b-2q0htacxae] {
    background: #fafbfc;
}

.input-field[b-2q0htacxae] {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    color: #374151;
    background: #ffffff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.input-field:focus[b-2q0htacxae] {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.input-field[b-2q0htacxae]::placeholder {
    color: #9ca3af;
}

.action-bar[b-2q0htacxae] {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 100;
}

.btn-add[b-2q0htacxae] {
    background: linear-gradient(90deg, #4f46e5, #0ea5e9);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
}

.btn-add:hover[b-2q0htacxae] {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-save[b-2q0htacxae] {
    background: linear-gradient(90deg, #10b981, #059669);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    margin-left: 10px;
    transition: opacity 0.15s, transform 0.15s;
}

.btn-save:hover[b-2q0htacxae] {
    opacity: 0.9;
    transform: translateY(-1px);
}

.icon-btn[b-2q0htacxae] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.15s, color 0.15s;
}

.remove-btn[b-2q0htacxae] {
    color: #ef4444;
}

.remove-btn:hover[b-2q0htacxae] {
    background: #fef2f2;
    color: #dc2626;
}

.suggestions-list[b-2q0htacxae] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    pointer-events: auto;
}

.suggestions-list li[b-2q0htacxae] {
    padding: 0.65rem 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
}

.suggestions-list li:last-child[b-2q0htacxae] {
    border-bottom: none;
}

.suggestions-list li:hover[b-2q0htacxae] {
    background: #f5f3ff;
    color: #4f46e5;
}
/* /Components/Pages/Production/ChallanPrint.razor.rz.scp.css */
/* Print rules are handled in the global <style> block inside ChallanPrint.razor */
/* /Components/Pages/Production/PaymentPage.razor.rz.scp.css */
@media print {
    .no-print[b-ojhteimdu0] { display: none !important; }
    .pay-wrap[b-ojhteimdu0] { padding: 0; max-width: 100%; }
}
/* /Components/Pages/Production/ProductionEntry.razor.rz.scp.css */
.page-title[b-5r0kxjvg6h] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.item-master-container[b-5r0kxjvg6h] {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    position: relative;
    z-index: 10;
}

.table-wrapper[b-5r0kxjvg6h] {
    overflow-x: auto;
    position: relative;
    z-index: 1;
}

.item-table[b-5r0kxjvg6h] {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
}

.item-table th[b-5r0kxjvg6h] {
    text-align: left;
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
    background: #f9fafb;
}

.item-table th:first-child[b-5r0kxjvg6h] {
    border-top-left-radius: 8px;
}

.item-table th:last-child[b-5r0kxjvg6h] {
    border-top-right-radius: 8px;
    width: 50px;
}

.item-table td[b-5r0kxjvg6h] {
    padding: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.item-table tr:hover td[b-5r0kxjvg6h] {
    background: #fafbfc;
}

.input-field[b-5r0kxjvg6h] {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    color: #374151;
    background: #ffffff;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.input-field:focus[b-5r0kxjvg6h] {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.input-field[b-5r0kxjvg6h]::placeholder {
    color: #9ca3af;
}

.input-field[readonly][b-5r0kxjvg6h] {
    background: #f9fafb;
    color: #6b7280;
    cursor: default;
}

.action-bar[b-5r0kxjvg6h] {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 100;
}

.btn-add[b-5r0kxjvg6h] {
    background: linear-gradient(90deg, #4f46e5, #0ea5e9);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
}

.btn-add:hover[b-5r0kxjvg6h] {
    opacity: 0.9;
    transform: translateY(-1px);
}

.suggestions-list[b-5r0kxjvg6h] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    pointer-events: auto;
}

.suggestions-list li[b-5r0kxjvg6h] {
    padding: 0.65rem 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
}

.suggestions-list li:last-child[b-5r0kxjvg6h] {
    border-bottom: none;
}

.suggestions-list li:hover[b-5r0kxjvg6h],
.suggestion-active[b-5r0kxjvg6h] {
    background: #f5f3ff;
    color: #4f46e5;
}
