/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-ajv7t9eedx] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ajv7t9eedx] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/TopBar.razor.rz.scp.css */
.topbar-search[b-v1nhyw7vs2] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon[b-v1nhyw7vs2] {
    position: absolute;
    left: 10px;
    color: var(--text-tertiary);
    pointer-events: none;
}

.topbar-search input[b-v1nhyw7vs2] {
    padding-left: 36px !important;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.profile-dropdown[b-v1nhyw7vs2] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.profile-dropdown-item[b-v1nhyw7vs2] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
    font-size: 14px;
}

.profile-dropdown-item:hover[b-v1nhyw7vs2] {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.profile-dropdown-item.logout[b-v1nhyw7vs2] {
    color: var(--error-color, #dc2626);
}

.profile-dropdown-item.logout:hover[b-v1nhyw7vs2] {
    background: rgba(220, 38, 38, 0.05);
}

.profile-dropdown-header[b-v1nhyw7vs2] {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name[b-v1nhyw7vs2] {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}

.user-email[b-v1nhyw7vs2] {
    font-size: 12px;
    color: var(--text-tertiary);
}

.dropdown-divider[b-v1nhyw7vs2] {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

.dropdown-overlay[b-v1nhyw7vs2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: transparent;
    cursor: default;
}

/* Global Search Results */
.search-results-dropdown[b-v1nhyw7vs2] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin-top: 8px;
    overflow: hidden;
    z-index: 1100;
    animation: slideDown-b-v1nhyw7vs2 0.2s ease;
}

.search-result-item[b-v1nhyw7vs2] {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--bg-secondary);
}

.search-result-item:hover[b-v1nhyw7vs2] {
    background: var(--bg-secondary);
}

.search-result-item.selected[b-v1nhyw7vs2] {
    background: rgba(37, 99, 235, 0.1);
}

[data-theme="dark"] .search-result-item.selected[b-v1nhyw7vs2] {
    background: rgba(37, 99, 235, 0.15);
}

.search-result-item:last-child[b-v1nhyw7vs2] {
    border-bottom: none;
}

.result-icon[b-v1nhyw7vs2] {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.result-text[b-v1nhyw7vs2] {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.result-title[b-v1nhyw7vs2] {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.result-subtitle[b-v1nhyw7vs2] {
    font-size: 11px;
    color: var(--text-tertiary);
}

.result-arrow[b-v1nhyw7vs2] {
    color: #cbd5e1;
    opacity: 0;
    transition: all 0.2s ease;
}

.search-result-item:hover .result-arrow[b-v1nhyw7vs2],
.search-result-item.selected .result-arrow[b-v1nhyw7vs2] {
    opacity: 1;
    transform: translateX(4px);
}

.search-no-results[b-v1nhyw7vs2] {
    padding: 16px;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 13px;
}

@keyframes slideDown-b-v1nhyw7vs2 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.topbar-right[b-v1nhyw7vs2] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.header-selectors[b-v1nhyw7vs2] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    margin-right: 8px;
}

.selector-item[b-v1nhyw7vs2] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.company-selector[b-v1nhyw7vs2],
.branch-selector[b-v1nhyw7vs2] {
    width: 180px;
}

.year-selector[b-v1nhyw7vs2] {
    width: 130px;
}

/* Custom Dropdown Styling for Header */
.header-dropdown .e-input-group.e-outline[b-v1nhyw7vs2] {
    background: var(--bg-primary) !important;
    border-radius: 6px !important;
    height: 38px !important;
}

.header-dropdown.e-float-input.e-outline .e-float-text[b-v1nhyw7vs2] {
    background: var(--bg-primary) !important;
    padding: 0 4px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
}

.header-dropdown.e-disabled .e-input-group.e-outline[b-v1nhyw7vs2] {
    background: var(--bg-secondary) !important;
    border-style: solid !important;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .header-selectors[b-v1nhyw7vs2] {
        gap: 8px;
        padding: 2px 4px;
    }

    .company-selector[b-v1nhyw7vs2],
    .branch-selector[b-v1nhyw7vs2] {
        width: 140px !important;
    }

    .year-selector[b-v1nhyw7vs2] {
        width: 110px !important;
    }
}

@media (max-width: 767px) {
    .topbar-right[b-v1nhyw7vs2] {
        gap: 8px;
    }

    .header-selectors[b-v1nhyw7vs2] {
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        margin-right: 4px;
    }

    .company-selector[b-v1nhyw7vs2] {
        display: none;
    }

    .branch-selector[b-v1nhyw7vs2] {
        width: 130px !important;
    }

    .year-selector[b-v1nhyw7vs2] {
        display: none;
    }
}

@media (max-width: 480px) {
    .branch-selector[b-v1nhyw7vs2] {
        width: 110px !important;
    }
}

.year-badge .fy-badge[b-v1nhyw7vs2] {
    padding: 6px 14px;
    font-weight: 700;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
/* /Components/Shared/UI/DetailsGrid.razor.rz.scp.css */
/* Details Grid Component Styles - Shared for all transaction/master screens */

.voucher-details-section[b-iihn41oe05] {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
}

[b-iihn41oe05] .voucher-details-section .table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

[b-iihn41oe05] .voucher-details-section .table thead {
    background: var(--bg-tertiary) !important;
    position: sticky;
    top: 0;
    z-index: 10;
}

[b-iihn41oe05] .voucher-details-section .table th {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid var(--border-color) !important;
    white-space: nowrap;
    color: var(--text-primary);
    text-align: inherit;
}

[b-iihn41oe05] .voucher-details-section .table td {
    padding: 0.5rem;
    vertical-align: middle;
    border: 1px solid var(--border-color) !important;
}

[b-iihn41oe05] .voucher-details-section .table tbody tr:hover {
    background-color: var(--bg-secondary);
}

/* Totals Section */
.totals-section[b-iihn41oe05] {
    padding: 1rem 0;
    margin-top: 1rem;
}

/* Form Labels */
.form-label.fw-bold[b-iihn41oe05] {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: block;
}

/* Dark Mode Support */
[data-theme="dark"] .voucher-details-section[b-iihn41oe05] {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"][b-iihn41oe05]  .table thead {
    background: var(--bg-tertiary) !important;
}

[data-theme="dark"][b-iihn41oe05]  .table tbody tr:hover {
    background-color: var(--bg-hover) !important;
}

/* Responsive Table */
.table-responsive[b-iihn41oe05] {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

/* Syncfusion Component Styling inside Table - Achievement of flat, professional grid look */
[b-iihn41oe05] .voucher-details-section .table td .e-input-group,
[b-iihn41oe05] .voucher-details-section .table td .e-control-wrapper,
[b-iihn41oe05] .voucher-details-section .table td .e-numerictextbox,
[b-iihn41oe05] .voucher-details-section .table td .e-datepicker,
[b-iihn41oe05] .voucher-details-section .table td .e-dropdownlist {
    margin-bottom: 0 !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

[b-iihn41oe05] .voucher-details-section .table td .e-small.e-input-group,
[b-iihn41oe05] .voucher-details-section .table td .e-small.e-control-wrapper {
    height: 32px;
}

/* Specific focus state to show user which cell is active */
[b-iihn41oe05] .voucher-details-section .table td .e-input-group.e-input-focus,
[b-iihn41oe05] .voucher-details-section .table td .e-input-group:focus-within {
    border-bottom: 2px solid var(--primary-color) !important;
    background-color: rgba(var(--primary-rgb, 37, 99, 235), 0.05) !important;
    border-radius: 0 !important;
}

[b-iihn41oe05] .voucher-details-section .table .e-input-group input,
[b-iihn41oe05] .voucher-details-section .table .e-control-wrapper input {
    font-size: 0.875rem;
    padding: 0 8px !important;
    background-color: transparent !important;
}

/* Ensure placeholder text is readable */
[b-iihn41oe05] .voucher-details-section .table ::placeholder {
    font-size: 0.8rem;
    opacity: 0.7;
}
/* /Components/Shared/UI/ExportDialog.razor.rz.scp.css */
.export-dialog-content[b-7d1ui4f2xd] {
    padding: 16px 0;
}

.export-info[b-7d1ui4f2xd] {
    background: var(--bg-tertiary);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.export-info p[b-7d1ui4f2xd] {
    margin: 6px 0;
    font-size: 14px;
    color: var(--text-primary);
}

.export-options[b-7d1ui4f2xd] {
    margin-bottom: 24px;
}

.export-option[b-7d1ui4f2xd] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.export-option:hover[b-7d1ui4f2xd] {
    background: var(--bg-tertiary);
}

.export-option input[type="radio"][b-7d1ui4f2xd] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.export-option label[b-7d1ui4f2xd] {
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.custom-range-inputs[b-7d1ui4f2xd] {
    margin-left: 32px;
    margin-top: 12px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 6px;
}

.range-input-group[b-7d1ui4f2xd] {
    margin-bottom: 12px;
}

.range-input-group label[b-7d1ui4f2xd] {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.range-info[b-7d1ui4f2xd] {
    margin-top: 12px;
    padding: 8px 12px;
    background: #eff6ff;
    border-left: 3px solid #2563eb;
    border-radius: 4px;
    font-size: 13px;
    color: #1e40af;
    font-weight: 500;
}

[data-theme="dark"] .range-info[b-7d1ui4f2xd] {
    background: rgba(37, 99, 235, 0.1);
    color: #60a5fa;
}

.export-format[b-7d1ui4f2xd] {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.export-format label[b-7d1ui4f2xd] {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-primary);
}

.format-buttons[b-7d1ui4f2xd] {
    display: flex;
    gap: 12px;
}

.format-buttons button[b-7d1ui4f2xd] {
    flex: 1;
}

/* Column Selection Section */
.column-selection-section[b-7d1ui4f2xd] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.section-header[b-7d1ui4f2xd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h4[b-7d1ui4f2xd] {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.selection-actions[b-7d1ui4f2xd] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-button[b-7d1ui4f2xd] {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.link-button:hover[b-7d1ui4f2xd] {
    background: var(--bg-tertiary);
    text-decoration: underline;
}

.separator[b-7d1ui4f2xd] {
    color: var(--text-tertiary);
    font-size: 12px;
}

.columns-grid[b-7d1ui4f2xd] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
}

.column-checkbox-item[b-7d1ui4f2xd] {
    padding: 6px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.column-checkbox-item:hover[b-7d1ui4f2xd] {
    background: var(--bg-secondary);
}

.selection-info[b-7d1ui4f2xd] {
    margin-top: 12px;
    padding: 8px 12px;
    background: #f0fdf4;
    border-left: 3px solid #10b981;
    border-radius: 4px;
    font-size: 13px;
    color: #047857;
    font-weight: 500;
}

[data-theme="dark"] .selection-info[b-7d1ui4f2xd] {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
}
/* /Components/Shared/UI/NumericTextBox.razor.rz.scp.css */
/* NumericTextBox Component Styles */

/* Right-align the numeric input text and ensure cursor starts from right */
:global(.e-numerictextbox .e-input)[b-ddu7oxhe1p],
:global(.e-numerictextbox input.e-input)[b-ddu7oxhe1p] {
    text-align: right !important;
    direction: ltr !important;
}

/* Ensure placeholder is also right-aligned */
:global(.e-numerictextbox .e-input::placeholder)[b-ddu7oxhe1p],
:global(.e-numerictextbox input.e-input::placeholder)[b-ddu7oxhe1p] {
    text-align: right !important;
}

/* Right-align in small size variant */
:global(.e-numerictextbox.e-small .e-input)[b-ddu7oxhe1p],
:global(.e-numerictextbox.e-small input.e-input)[b-ddu7oxhe1p] {
    text-align: right !important;
    direction: ltr !important;
}

/* Ensure the input group wrapper doesn't interfere */
:global(.e-numerictextbox .e-input-group)[b-ddu7oxhe1p],
:global(.e-numerictextbox.e-input-group)[b-ddu7oxhe1p] {
    text-align: right !important;
}

/* Dark mode support - ensure text remains visible */
:global([data-theme="dark"] .e-numerictextbox .e-input)[b-ddu7oxhe1p],
:global([data-theme="dark"] .e-numerictextbox input.e-input)[b-ddu7oxhe1p] {
    text-align: right !important;
    direction: ltr !important;
    color: var(--text-color);
}

/* Ensure focus state maintains right alignment */
:global(.e-numerictextbox .e-input:focus)[b-ddu7oxhe1p],
:global(.e-numerictextbox input.e-input:focus)[b-ddu7oxhe1p] {
    text-align: right !important;
}

/* Fix for overlapping outline floating label - ensure label has background to cut border */
:global(.e-outline.e-float-input.e-numeric .e-float-text)[b-ddu7oxhe1p],
:global(.e-outline.e-float-input.e-numeric.e-focused .e-float-text)[b-ddu7oxhe1p] {
    background: var(--bg-primary, #ffffff) !important;
    padding: 0 4px !important;
    z-index: 10;
}

:global([data-theme="dark"] .e-outline.e-float-input.e-numeric .e-float-text)[b-ddu7oxhe1p],
:global([data-theme="dark"] .e-outline.e-float-input.e-numeric.e-focused .e-float-text)[b-ddu7oxhe1p] {
    background: var(--bg-secondary, #1e293b) !important;
}
/* /Pages/Dashboard/EmpTransportDashboard.razor.rz.scp.css */

/* ============================= */
/* Dashboard Container */
/* ============================= */

.erp-db-container[b-yd60w95x4t] {
    padding: 0 0 0 270px; /* ADDED LEFT PADDING FOR SIDEBAR MENU */
    max-width: 100%;
    margin: 0;
    min-height: 100vh; /* RESTORED TO FULL SCREEN FOR BETTER COVER LOOK */
    width: 100vw;
    overflow: hidden; 
    background-color: #1e3a8a; /* DARK BLUE TO MATCH IMAGE THEME */ 
   background-image: 
        linear-gradient(to bottom, rgba(250, 249, 255, 0.1) 0%, rgba(224, 242, 254, 0.4) 100%),
        url('/CompanyLogos/EmpTransportDashboard.png'); 
    
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: fixed; /* CHANGED TO FIXED TO COVER ENTIRE VIEWPORT */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

/* Glass Overlay for readability */
.erp-db-container[b-yd60w95x4t]::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
    pointer-events: none;
}

.erp-db-header[b-yd60w95x4t] {
    position: relative;
    z-index: 1;
    margin: 25px auto 25px auto !important; /* CENTER THE HEADER */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    padding: 8px 25px;
    border-radius: 12px;
    display: flex !important;
    justify-content: center !important; /* CENTER CONTENT */
    align-items: center !important;
    width: fit-content !important; /* FIT TO CONTENT */
}

.erp-db-header h2[b-yd60w95x4t] {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: #1e293b;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* ============================= */
/* Dashboard Grid - 5 Columns */
/* ============================= */

.erp-db-grid[b-yd60w95x4t] {
    position: relative;
    z-index: 1;
    display: flex; 
    flex-wrap: wrap;
    gap: 12px; 
    align-items: stretch; /* MAKE ALL SECTIONS IN A ROW EQUAL HEIGHT */
    justify-content: start;
    margin: 0 25px 25px 25px; /* ADDED MARGIN TO MAINTAIN SPACING */
}
/* REMOVED GRID COLS FROM MEDIA QUERIES TO PREVENT GAPS */

/* ============================= */
/* Dashboard Section */
/* ============================= */

.erp-db-section[b-yd60w95x4t] {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 12px; 
    padding: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
    border: none !important;
    display: flex;
    flex-direction: column;
    height: auto; /* ALLOW FLEX STRETCH */
    width: fit-content; 
    min-width: 280px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: erp-db-fadeInUp-b-yd60w95x4t 0.6s ease-out;
    overflow: hidden;
}

.erp-db-section:hover[b-yd60w95x4t] {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* ============================= */
/* Section Header - Themed */
/* ============================= */

.erp-db-section-header[b-yd60w95x4t] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: -16px -16px 15px -16px;
    padding: 14px 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    background-color: #f0f9ff; /* LIGHT BLUE BACKGROUND COLOR */
    /* background: linear-gradient(90deg, #1e40af, #3b82f6); /* Default Blue */ */
    color: #000; /* NORMAL BLACK COLOR */
    border-radius: 8px; /* ROUNDED CORNERS */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* SUBTLE SHADOW */
}

/* Operations - Orange Theme */
/* .erp-db-section:nth-child(2) .erp-db-section-header {
    background: linear-gradient(90deg, #ea580c, #f97316); 
} */

/* Accounts - Light Blue/Teal Theme */
/* .erp-db-section:nth-child(3) .erp-db-section-header {
    background: linear-gradient(90deg, #0284c7, #0ea5e9);
} */

/* Bank Balance - Darker Blue */
/* .erp-db-section:nth-child(4) .erp-db-section-header,
.data-section-balanced .erp-db-section-header {
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
} */

/* Pending Memo - Orange Header in Secondary Row */
/* .pending-memo-section .erp-db-section-header {
    background: linear-gradient(90deg, #ea580c, #f97316);
} */

.erp-db-section-header i[b-yd60w95x4t] {
    font-size: 1.4rem;
    color: #000; /* NORMAL BLACK COLOR FOR ICONS */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.erp-db-section-header h2[b-yd60w95x4t] {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    color: #000; /* NORMAL BLACK COLOR */
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ============================= */
/* Section Cards Grid */
/* ============================= */

.erp-db-section-cards[b-yd60w95x4t] {
    display: flex; 
    flex-wrap: wrap;
    gap: 8px; 
    flex-grow: 0; /* DON'T GROW CARDS VERTICALLY */
    align-content: flex-start; /* KEEP ROWS TIGHT */
    justify-content: flex-start; /* ALIGN CARDS TO START */
    width: 275px; 
}

.erp-db-section-cards.grid-3-cols[b-yd60w95x4t] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start; /* ALIGN CARDS TO START */
    align-content: flex-start; /* KEEP ROWS TIGHT */
}

/* ============================= */
/* Action Cards - Glass Look */
/* ============================= */

.erp-db-action-card[b-yd60w95x4t] {
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 85px; /* FIXED WIDTH LIKE FIRST IMAGE */
    height: 85px; /* FIXED HEIGHT LIKE FIRST IMAGE */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.erp-db-action-card:hover[b-yd60w95x4t] {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #3b82f6; /* FULL BORDER AROUND MENU BOX */
}

.erp-db-card-main[b-yd60w95x4t] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px; /* TIGHT GAP LIKE FIRST IMAGE */
    padding:4px 4px;
    cursor: pointer;
}

.erp-db-card-icon[b-yd60w95x4t] {
    font-size: 1.1rem; 
    color: #2563eb; /* MORE VIBRANT PROPER BLUE */
    margin-bottom: 2px;
}

.erp-db-card-label[b-yd60w95x4t] {
    font-size: 0.65rem; 
    font-weight: 640; /* HEAVIER WEIGHT FOR BETTER VISIBILITY */
    color: #000000; /* STANDARD BLACK COLOR */
    text-transform: uppercase; /* UPPERCASE FOR BETTER READ */
    text-align: center;
    white-space: normal;
    line-height: 1;
    word-break: break-word;
}

.erp-db-card-quick-add[b-yd60w95x4t] {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0ea5e9;
    font-size: 0.8rem;
    border: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.erp-db-card-quick-add:hover[b-yd60w95x4t] {
    background: #3b82f6;
    color: white !important;
}

/* ============================= */
/* Bank Balance Table */
/* ============================= */

.erp-db-monthly-sales-info[b-yd60w95x4t] {
    padding: 5px 5px;
    height: auto;
}

.erp-db-monthly-sales-info .table td[b-yd60w95x4t] {
    border: none;
    padding: 6px 0; /* TIGHTER PADDING */
    font-weight: 700;
    color: #334155;
    vertical-align: middle;
}

.erp-db-monthly-sales-info .table tr[b-yd60w95x4t] {
    border-bottom: 1px solid #f1f5f9;
}

/* Secondary row for Bank and Pending - SIDE BY SIDE */
.erp-db-secondary-row[b-yd60w95x4t] {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: fit-content;
    align-items: stretch;
    margin: 0 25px 25px 25px; /* ADDED MARGIN TO MAINTAIN SPACING */
}

/* Pending Memo Special Width */
.pending-memo-section[b-yd60w95x4t] {
    flex: 3; /* TAKE MORE SPACE */
    min-width: 620px; 
}

.data-section-balanced[b-yd60w95x4t] {
    flex: 1; /* BANK BALANCE TAKES LESS SPACE */
    min-width: 300px;
}

.erp-db-panel-body .table th[b-yd60w95x4t] {
    background: #f8fafc !important;
    font-weight: 800;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
}

.erp-db-panel-body .table td[b-yd60w95x4t] {
    padding: 10px 8px;
    font-weight: 600;
}

/* Animations */
@keyframes erp-db-fadeInUp-b-yd60w95x4t {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1100px) {
    .pending-memo-section[b-yd60w95x4t] { min-width: 100%; }
}
/* /Pages/Index.razor.rz.scp.css */
/* ============================= */
/* Dashboard Container */
/* ============================= */

.erp-db-container[b-pq64t6maab] {
    padding: var(--spacing-md);
    max-width: 1800px;
    margin: 0 auto;
}

.erp-db-header[b-pq64t6maab] {
    margin-bottom: var(--spacing-md);
}

.erp-db-header h2[b-pq64t6maab] {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

/* ============================= */
/* Dashboard Grid - 5 Columns */
/* ============================= */

.erp-db-grid[b-pq64t6maab] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* FIXED 5 columns */
    gap: var(--spacing-md);
    /* slightly more gap for better breathing */
    align-items: stretch;
    /* All items in a row same height */
}

/* ============================= */
/* Dashboard Section */
/* ============================= */

.erp-db-section[b-pq64t6maab] {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure full height in grid */
    transition: all 0.3s ease;
    animation: erp-db-fadeInUp-b-pq64t6maab 0.5s ease-out;
    border: 1px solid var(--border-color);
}

.erp-db-section:hover[b-pq64t6maab] {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ============================= */
/* Section Header */
/* ============================= */

.erp-db-section-header[b-pq64t6maab] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.erp-db-section-header i[b-pq64t6maab] {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.erp-db-section-header h2[b-pq64t6maab] {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* ============================= */
/* Section Cards Grid */
/* ============================= */

.erp-db-section-cards[b-pq64t6maab] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Stretch to fill width */
    gap: 10px;
    flex-grow: 1;
    /* Fill vertical space in section */
    height: 100%;
}

/* ============================= */
/* Action Cards (FLEXIBLE) */
/* ============================= */

.erp-db-action-card[b-pq64t6maab] {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 80px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.erp-db-action-card:hover[b-pq64t6maab] {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.erp-db-card-main[b-pq64t6maab] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 10px;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
}

.erp-db-card-main:hover[b-pq64t6maab] {
    background: rgba(37, 99, 235, 0.02);
}

.erp-db-card-icon[b-pq64t6maab] {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.erp-db-card-label[b-pq64t6maab] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.erp-db-card-quick-add[b-pq64t6maab] {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.2s ease;
    z-index: 10;
    opacity: 0.8;
}

.erp-db-card-quick-add:hover[b-pq64t6maab] {
    background: var(--primary-color);
    color: white !important;
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
}

/* Dark mode adjustment for cards */
[data-theme="dark"] .erp-db-action-card[b-pq64t6maab] {
    background: var(--bg-secondary);
}

[data-theme="dark"] .erp-db-card-quick-add[b-pq64t6maab] {
    background: rgba(255, 255, 255, 0.1);
}

.erp-db-card-icon[b-pq64t6maab] {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.erp-db-card-label[b-pq64t6maab] {
    font-size: 0.8rem;
    /* Slightly larger for readability in compact mode */
    font-weight: 600;
    color: var(--text-primary);
    white-space: normal;
    text-align: center;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
    line-height: 1.1;
}

/* ============================= */
/* Info Section */
/* ============================= */

.erp-db-info-section[b-pq64t6maab] {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

/* ============================= */
/* Outstanding Section */
/* ============================= */
/* Outstanding Info */
.erp-db-outstanding-info[b-pq64t6maab] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.erp-db-outstanding-row[b-pq64t6maab] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.erp-db-outstanding-row:hover[b-pq64t6maab] {
    transform: translateX(4px);
}

.erp-db-outstanding-row.total[b-pq64t6maab] {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-left-color: #7c3aed;
    font-weight: 700;
}

.erp-db-outstanding-row .value.highlight[b-pq64t6maab] {
    color: #ef4444;
    font-weight: 700;
}

/* ============================= */
/* Monthly Sales */
/* ============================= */

.erp-db-monthly-sales-info[b-pq64t6maab] {
    overflow-x: auto;
}

.erp-db-sales-table[b-pq64t6maab] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.erp-db-sales-table thead[b-pq64t6maab] {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
}

.erp-db-sales-table th[b-pq64t6maab] {
    padding: 8px 10px;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.erp-db-sales-table td[b-pq64t6maab] {
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Courier New', monospace;
    font-weight: 500;
    color: var(--text-primary);
}

.erp-db-sales-table tbody tr:hover[b-pq64t6maab] {
    background: var(--bg-secondary);
}

/* ============================= */
/* Bank Balance */
/* ============================= */

.erp-db-section .table td[b-pq64t6maab] {
    font-size: 0.8rem;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.erp-db-section .table tr:hover[b-pq64t6maab] {
    background-color: var(--bg-hover, rgba(255, 255, 255, 0.05));
}

/* ============================= */
/* Responsive Layout */
/* ============================= */

@media (max-width: 1600px) {
    .erp-db-grid[b-pq64t6maab] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .erp-db-grid[b-pq64t6maab] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .erp-db-grid[b-pq64t6maab] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .erp-db-grid[b-pq64t6maab] {
        grid-template-columns: 1fr;
    }

    .erp-db-section-cards[b-pq64t6maab] {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* Animation */
/* ============================= */

@keyframes erp-db-fadeInUp-b-pq64t6maab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Login.razor.rz.scp.css */
.login-wrapper[b-acq1oipktv] {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    overflow: hidden;
    padding: 20px;
}

/* Mesh Background */
.mesh-background[b-acq1oipktv] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.mesh-ball[b-acq1oipktv] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-b-acq1oipktv 20s infinite alternate ease-in-out;
}

.ball-1[b-acq1oipktv] {
    width: 400px;
    height: 400px;
    background: #2563eb;
    top: -10%;
    left: -10%;
}

.ball-2[b-acq1oipktv] {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.ball-3[b-acq1oipktv] {
    width: 300px;
    height: 300px;
    background: #0ea5e9;
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float-b-acq1oipktv {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.1);
    }
}

.login-container[b-acq1oipktv] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
}

.login-card[b-acq1oipktv] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    color: white;
}

.login-header[b-acq1oipktv] {
    padding: 40px 40px 20px;
    text-align: center;
}

.logo-container[b-acq1oipktv] {
    width: 100%;
    height: 120px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: none;
    overflow: hidden;
}

.logo-svg[b-acq1oipktv] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-name[b-acq1oipktv] {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    background: linear-gradient(to right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    outline: none !important;
}

.app-tagline[b-acq1oipktv] {
    font-size: 14px;
    color: #94a3b8;
}

.login-body[b-acq1oipktv] {
    padding: 20px 40px 30px;
}

.form-group[b-acq1oipktv] {
    margin-bottom: 20px;
    position: relative;
}

.password-field-wrapper[b-acq1oipktv] {
    position: relative;
    width: 100%;
}

.password-toggle-btn[b-acq1oipktv] {
    position: absolute;
    right: 12px;
    top: 58% !important;
    transform: translateY(-50%) !important;
    width: 32px;
    height: 32px;
    background: transparent !important;
    border: none !important;
    color: #94a3b8;
    cursor: pointer;
    z-index: 30 !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
}

.password-toggle-btn:hover[b-acq1oipktv] {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

.password-toggle-btn i[b-acq1oipktv] {
    font-size: 16px;
}

[b-acq1oipktv] .custom-input.e-input-group,
[b-acq1oipktv] .custom-input.e-float-input,
[b-acq1oipktv] .custom-input.e-input-group.e-control-wrapper {
    background: rgba(30, 41, 59, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    min-height: 52px !important;
    height: 52px !important;
}

[b-acq1oipktv] .custom-input.e-input-group.e-input-focus,
[b-acq1oipktv] .custom-input.e-float-input.e-input-focus {
    border: 1px solid #3b82f6 !important;
    border-width: 1px !important;
    background: rgba(30, 41, 59, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    outline: none !important;
}

/* Remove bottom line/underline on focus and background-color on label */
[b-acq1oipktv] .custom-input .e-input-group-icon,
[b-acq1oipktv] .custom-input .e-input-btn-ripple,
[b-acq1oipktv] .custom-input::after,
[b-acq1oipktv] .custom-input::before,
[b-acq1oipktv] .custom-input .e-float-line::after,
[b-acq1oipktv] .custom-input .e-float-line::before,
[b-acq1oipktv] .custom-input .e-float-text {
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: none !important;
}

[b-acq1oipktv] .custom-input .e-input-group-icon,
[b-acq1oipktv] .custom-input .e-input-btn-ripple {
    display: none !important;
}

[b-acq1oipktv] .custom-input.e-input-group.e-error,
[b-acq1oipktv] .custom-input.e-float-input.e-error {
    border: 1px solid rgba(248, 113, 113, 0.5) !important;
    border-width: 1px !important;
    background: rgba(30, 41, 59, 0.4) !important;
}

[b-acq1oipktv] .custom-input .e-input,
[b-acq1oipktv] .custom-input input,
[b-acq1oipktv] .custom-input.e-input-group input,
[b-acq1oipktv] .custom-input.e-float-input input {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 15px !important;
    background: transparent !important;
    font-weight: 500 !important;
    padding: 12px 14px !important;
    line-height: 1.5 !important;
}

/* Label when inside (centered state) */
[b-acq1oipktv] .custom-input .e-float-text,
[b-acq1oipktv] .custom-input.e-float-input .e-float-text {
    color: #94a3b8 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    background-color: transparent !important;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    /* Smoother transition */
    pointer-events: none;
    z-index: 10 !important;
}

/* Label when floated to top (Floating state) */
[b-acq1oipktv] .custom-input.e-input-focus .e-float-text,
[b-acq1oipktv] .custom-input .e-float-text.e-label-top,
[b-acq1oipktv] .custom-input.e-float-input .e-float-text.e-label-top,
[b-acq1oipktv] .custom-input.e-float-input.e-control-wrapper .e-float-text.e-label-top {
    color: #60a5fa !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    top: -22px !important;
    left: 2px !important;
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
}

[b-acq1oipktv] .custom-input input:-webkit-autofill,
[b-acq1oipktv] .custom-input input:-webkit-autofill:hover,
[b-acq1oipktv] .custom-input input:-webkit-autofill:focus,
[b-acq1oipktv] .custom-input input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px #1e293b inset !important;
    box-shadow: 0 0 0 1000px #1e293b inset !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: white !important;
}

[b-acq1oipktv] .custom-input.e-float-input.e-control-wrapper.e-input-group .e-float-text.e-label-top,
[b-acq1oipktv] .custom-input.e-float-input.e-control-wrapper.e-input-group .e-float-text.e-label-bottom {
    background-color: transparent !important;
}

[b-acq1oipktv] .login-btn,
[b-acq1oipktv] .login-btn.e-btn,
[b-acq1oipktv] .login-btn.e-control,
.login-btn[b-acq1oipktv] {
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    background-color: #2563eb !important;
    border: none !important;
    border-width: 0 !important;
    color: white !important;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    outline: none !important;
    cursor: pointer !important;
    position: relative;
    overflow: hidden;
    padding: 0 24px !important;
    line-height: 50px !important;
}

[b-acq1oipktv] .login-btn::before,
.login-btn[b-acq1oipktv]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 0;
}

[b-acq1oipktv] .login-btn:hover::before,
.login-btn:hover[b-acq1oipktv]::before {
    left: 100%;
}

[b-acq1oipktv] .login-btn:hover,
[b-acq1oipktv] .login-btn.e-btn:hover,
.login-btn:hover[b-acq1oipktv] {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.6), 0 8px 10px -2px rgba(0, 0, 0, 0.15) !important;
    filter: brightness(1.1);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    background-color: #2563eb !important;
    border: none !important;
    outline: none !important;
}

[b-acq1oipktv] .login-btn:active,
[b-acq1oipktv] .login-btn:focus,
[b-acq1oipktv] .login-btn.e-btn:active,
[b-acq1oipktv] .login-btn.e-btn:focus,
.login-btn:active[b-acq1oipktv],
.login-btn:focus[b-acq1oipktv] {
    border: none !important;
    outline: none !important;
    transform: translateY(0) !important;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    background-color: #2563eb !important;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.5), 0 0 0 3px rgba(37, 99, 235, 0.3) !important;
}

.error-alert[b-acq1oipktv] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    color: #f87171;
    font-size: 14px;
    margin-bottom: 24px;
}

.login-footer[b-acq1oipktv] {
    padding: 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.login-footer p[b-acq1oipktv] {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.fade-in-up[b-acq1oipktv] {
    animation: fadeInUp-b-acq1oipktv 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.slide-in-bottom[b-acq1oipktv] {
    animation: slideInBottom-b-acq1oipktv 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInUp-b-acq1oipktv {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInBottom-b-acq1oipktv {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[b-acq1oipktv] .validation-message {
    color: #f87171;
    font-size: 12px;
    margin-top: 6px;
    margin-left: 4px;
    display: block;
    font-weight: 500;
}
/* /Pages/Master/CityList.razor.rz.scp.css */
.form-container[b-1u3mnxqzce] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-header[b-1u3mnxqzce] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.form-header h3[b-1u3mnxqzce] {
    margin: 0;
    color: #212529;
    font-weight: 600;
}

.form-actions[b-1u3mnxqzce] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.validation-message[b-1u3mnxqzce] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.badge-success[b-1u3mnxqzce] {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.badge-danger[b-1u3mnxqzce] {
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}
/* /Pages/Master/Companies.razor.rz.scp.css */
.form-container[b-ybnjkqjy7l] {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.form-header[b-ybnjkqjy7l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.form-header h3[b-ybnjkqjy7l] {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.form-actions[b-ybnjkqjy7l] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.validation-message[b-ybnjkqjy7l] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.badge-success[b-ybnjkqjy7l] {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.badge-danger[b-ybnjkqjy7l] {
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}
/* /Pages/Master/CompanyTypeMenu.razor.rz.scp.css */
.toolbar-section[b-uqt1fp7fgx] {
    padding: 1.5rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.empty-state[b-uqt1fp7fgx] {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    margin: 1.5rem;
    border-radius: 8px;
}

.empty-state-icon[b-uqt1fp7fgx] {
    margin-bottom: 1.5rem;
    color: #dee2e6;
}

.empty-state h3[b-uqt1fp7fgx] {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state p[b-uqt1fp7fgx] {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.fw-bold[b-uqt1fp7fgx] {
    font-weight: 600;
    color: #0f172a;
}

.text-muted[b-uqt1fp7fgx] {
    color: #6c757d;
}

.grid-actions[b-uqt1fp7fgx] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
/* /Pages/Master/CustomerWiseItemWiseRate.razor.rz.scp.css */
.form-container[b-r2lrttn2di] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-header[b-r2lrttn2di] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.form-header h3[b-r2lrttn2di] {
    margin: 0;
    color: #212529;
    font-weight: 600;
}

.form-actions[b-r2lrttn2di] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.validation-message[b-r2lrttn2di] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.badge-success[b-r2lrttn2di] {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.badge-danger[b-r2lrttn2di] {
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}
/* /Pages/Master/DeliveryMemos.razor.rz.scp.css */
.pod-section[b-trtha8q28u] {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border-color: #e2e8f0 !important;
}

.pod-header[b-trtha8q28u] {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.pod-header i[b-trtha8q28u] {
    color: #64748b;
    font-size: 1.2rem;
}

.pod-upload-box[b-trtha8q28u] {
    width: 100px;
    height: 100px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    background: #f8fafc;
}

.pod-upload-box:hover[b-trtha8q28u] {
    border-color: #3b82f6;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.pod-upload-box.has-image[b-trtha8q28u] {
    border-style: solid;
    border-color: #e2e8f0;
}

.pod-upload-box i[b-trtha8q28u] {
    font-size: 2.5rem;
    color: #94a3b8;
}

.pod-upload-box img[b-trtha8q28u] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide the default browse button but keep it clickable */
.pod-upload-box[b-trtha8q28u]  .e-upload {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.pod-upload-box[b-trtha8q28u]  .e-upload-browse-btn {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pod-upload-box[b-trtha8q28u]  .e-file-select-wrap {
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
/* /Pages/Master/ExpAdd_Edit.razor.rz.scp.css */
.page-container[b-1ag47dw5tr] {
    padding: 2px !important;
}

.breadcrumb-container[b-1ag47dw5tr] {
    margin-bottom: 2px !important;
    padding: 2px 8px !important;
}

.form-container[b-1ag47dw5tr] {
    padding: 4px !important;
    padding-bottom: 50px !important;
}

.form-section[b-1ag47dw5tr] {
    margin-bottom: 12px !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
}

.form-header[b-1ag47dw5tr] {
    margin-bottom: 4px !important;
    padding-bottom: 1px !important;
    font-size: 0.78rem !important;
    min-height: auto !important;
}

.row[b-1ag47dw5tr] {
    --bs-gutter-x: 0.75rem !important;
    --bs-gutter-y: 0.4rem !important;
}

.col-md-2[b-1ag47dw5tr],
.col-md-6[b-1ag47dw5tr] {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}

.mb-2[b-1ag47dw5tr] {
    margin-bottom: 0.15rem !important;
}

/* Compact Syncfusion */
[b-1ag47dw5tr] .e-control-wrapper.e-small .e-float-input.e-control-wrapper.e-float-text,
[b-1ag47dw5tr] .e-control-wrapper.e-small .e-float-input.e-control-wrapper.e-label-top,
[b-1ag47dw5tr] .e-small .e-input-group.e-control-wrapper {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

[b-1ag47dw5tr] .e-outline.e-control-wrapper.e-small {
    height: 40px !important;
    margin-top: 5px;
}

[b-1ag47dw5tr] .e-outline.e-float-input.e-small .e-float-text,
[b-1ag47dw5tr] .e-outline.e-float-input.e-control-wrapper.e-small .e-float-text {
    font-size: 12px;
}

[b-1ag47dw5tr] .e-dropdownlist.e-outline.e-small.e-control-wrapper {
    display: flex;
    align-items: center;
}

/* Sticky Footer */
.sticky-footer[b-1ag47dw5tr] {
    height: 45px !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
}

.sticky-footer[b-1ag47dw5tr]  .e-btn {
    padding: 2px 16px !important;
    height: 34px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
}

.sticky-footer i[b-1ag47dw5tr] {
    font-size: 12px !important;
}

/* White Background */
.page-container[b-1ag47dw5tr],
.form-container[b-1ag47dw5tr],
.form-section[b-1ag47dw5tr] {
    background-color: #ffffff !important;
}
/* /Pages/Master/GCNRunsheet.razor.rz.scp.css */
.custom-panel[b-d7opv1yy1d] {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 0;
}

.panel-header[b-d7opv1yy1d] {
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: bold;
    color: #333;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-body[b-d7opv1yy1d] {
    padding: 15px;
}

.e-outline.e-small[b-d7opv1yy1d] {
    margin-bottom: 2px;
}
/* /Pages/Master/GCNs.razor.rz.scp.css */
/* Transport ERP - GCN Details Styles */

.gcn-details-page[b-6y0uky40lz] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    animation: fadeIn-b-6y0uky40lz 0.3s ease-out;
}

/* Page and Form Container Aesthetics */
.page-container[b-6y0uky40lz] {
    padding: 2px !important;
    background-color: var(--bg-secondary, #f8fafc) !important; /* Standard ERP gray background */
    min-height: calc(100vh - 64px);
    overflow-x: hidden !important;
    width: 100%;
}

.form-container[b-6y0uky40lz] {
    background-color: transparent !important;
    padding: 4px !important;
    padding-bottom: 50px !important;
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #1e293b; /* Dark text for clarity */
}

.form-container .row[b-6y0uky40lz] {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.gcn-details-header[b-6y0uky40lz] {
    background: #f8f9fa;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
    border-radius: 8px 8px 0 0;
    border: 1px solid #dee2e6;
    border-bottom: none;
}

.tabs-wrapper[b-6y0uky40lz] {
    display: flex;
    gap: 8px;
    height: 100%;
}

.tab-item[b-6y0uky40lz] {
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
    border-right: 1px solid #dee2e6;
}

.tab-item:hover[b-6y0uky40lz] {
    background: #f1f5f9;
    color: #1e40af;
}

.tab-item.active[b-6y0uky40lz] {
    color: #1e40af;
    background: #fff;
    border-top: 2px solid #1e40af;
    margin-top: -1px;
}

.header-right-actions[b-6y0uky40lz] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-badge-container[b-6y0uky40lz] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-badge[b-6y0uky40lz] {
    background: #dcfce7;
    color: #15803d;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 710;
    text-transform: uppercase;
    border: 1px solid #bbf7d0;
}

.branch-info[b-6y0uky40lz] {
    font-size: 0.75rem;
    color: #475569;
}

.text-info[b-6y0uky40lz] {
    color: #0ea5e9 !important;
    font-weight: 600;
}

.btn-close-gcn[b-6y0uky40lz] {
    background: #ef4444;
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-close-gcn:hover[b-6y0uky40lz] {
    background: #dc2626;
    transform: scale(1.05);
}

.gcn-details-body[b-6y0uky40lz] {
    padding: 15px 20px;
    background: #fff;
}

.detail-section[b-6y0uky40lz] {
    background: transparent;
    border: none;
    margin-bottom: 15px;
}

.section-title[b-6y0uky40lz] {
    padding: 6px 12px;
    background: #f0f7ff;
    border-left: 4px solid #0066ff;
    font-size: 0.8rem;
    font-weight: 710;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #0056b3;
}

.section-title i[b-6y0uky40lz] {
    color: #0066ff;
    font-size: 1rem;
}

.section-content[b-6y0uky40lz] {
    padding: 0;
}

.table-detail[b-6y0uky40lz] {
    width: 100%;
    border-collapse: collapse;
}

.table-detail td[b-6y0uky40lz] {
    padding: 3px 0;
    font-size: 0.8rem;
    vertical-align: middle;
}

.table-detail.no-border td[b-6y0uky40lz] {
    border: none !important;
}

.table-detail .label[b-6y0uky40lz] {
    color: #475569;
    font-weight: 500;
    width: 1%;
    white-space: nowrap;
    padding-right: 15px;
}

.table-detail .value[b-6y0uky40lz] {
    color: #0f172a;
    font-weight: 500;
}

.badge-no[b-6y0uky40lz] {
    display: inline-block;
    background: #ff4d4d;
    color: #fff;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    min-width: 28px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(255, 77, 77, 0.3);
}

.badge-yes[b-6y0uky40lz] {
    display: inline-block;
    background: #10b981;
    color: #fff;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    min-width: 28px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.table-detail .label[b-6y0uky40lz] {
    color: #475569;
    font-weight: 500;
    width: 1%;
    white-space: nowrap;
    padding-right: 10px;
}

/* Proper Grid Style for Detailed Tables (Items, Path, Log) */
.custom-detail-grid[b-6y0uky40lz] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
}

.custom-detail-grid thead th[b-6y0uky40lz] {
    background-color: #f8f9fa !important;
    color: #212529 !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: none;
    /* Project standard is usually not all-caps for detail grids */
    padding: 10px 12px !important;
    border: 1px solid #dee2e6 !important;
    text-align: left;
}

.custom-detail-grid thead th:last-child[b-6y0uky40lz] {
    border-right: none !important;
}

.custom-detail-grid tbody td[b-6y0uky40lz] {
    padding: 8px 12px !important;
    font-size: 0.82rem !important;
    color: #334155 !important;
    border: 1px solid #dee2e6 !important;
    vertical-align: middle;
}

.custom-detail-grid tbody td:last-child[b-6y0uky40lz] {
    border-right: none !important;
}

.custom-detail-grid tbody tr:hover[b-6y0uky40lz] {
    background-color: #f1f5f9;
}

.custom-detail-grid tbody tr:last-child td[b-6y0uky40lz] {
    border-bottom: none !important;
}

.total-amount-box[b-6y0uky40lz] {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 12px 20px;
    height: 40px;
    min-width: 200px;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.total-amount-label[b-6y0uky40lz] {
    font-weight: 500;
    font-size: 0.9rem;
    color: #0369a1;
    margin-bottom: 2px;
}

.total-amount-value[b-6y0uky40lz] {
    margin: 0;
    font-weight: 500;
    font-size: 1.5rem;
    color: #0284c7;
}

/* Fix readonly numeric textbox border (remove red border) */
.readonly-total[b-6y0uky40lz]  .e-input-group,
.readonly-total[b-6y0uky40lz]  .e-input-group.e-control-wrapper,
.readonly-total[b-6y0uky40lz]  .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error),
.readonly-total[b-6y0uky40lz]  .e-input-group:not(.e-success):not(.e-warning):not(.e-error),
.readonly-total[b-6y0uky40lz]  .e-input-group.e-control-wrapper.e-disabled,
.readonly-total[b-6y0uky40lz]  .e-input-group.e-disabled {
    border: 1px solid #dee2e6 !important;
    border-color: #dee2e6 !important;
    border-bottom-color: #dee2e6 !important;
    background: #f8fafc !important;
    opacity: 1 !important;
}

.readonly-total[b-6y0uky40lz]  .e-float-line::before,
.readonly-total[b-6y0uky40lz]  .e-float-line::after {
    background: transparent !important;
}

.readonly-total[b-6y0uky40lz]  input {
    color: #1e293b !important;
    font-weight: 700 !important;
    -webkit-text-fill-color: #1e293b !important;
}

.fw-black[b-6y0uky40lz] {
    font-weight: 900;
}

/* Image Detail Design */
.gcn-images-container[b-6y0uky40lz] {
    padding: 10px 0;
}

.image-details-grid[b-6y0uky40lz] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gcn-image-card[b-6y0uky40lz] {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
}

.gcn-image-card:hover[b-6y0uky40lz] {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.image-card-header[b-6y0uky40lz] {
    padding: 10px 15px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.image-card-header i[b-6y0uky40lz] {
    color: #3b82f6;
    font-size: 1rem;
}

.image-content[b-6y0uky40lz] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.image-content .no-image-placeholder[b-6y0uky40lz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.no-image-placeholder i[b-6y0uky40lz] {
    font-size: 2.5rem;
}

.no-image-placeholder span[b-6y0uky40lz] {
    font-size: 0.8rem;
    font-weight: 500;
}

.image-overlay[b-6y0uky40lz] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.gcn-image-card:hover .image-overlay[b-6y0uky40lz] {
    opacity: 1;
}

.btn-view-image[b-6y0uky40lz] {
    background: #fff;
    color: #1e40af;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* POD / Log Tables */
/* Utility classes for grid text */
.text-orange[b-6y0uky40lz] {
    color: #f97316 !important;
}

.pod-not-uploaded[b-6y0uky40lz] {
    padding: 60px;
    text-align: center;
    color: #94a3b8;
    background: #fff;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

@keyframes fadeIn-b-6y0uky40lz {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility */
.small[b-6y0uky40lz] {
    font-size: 0.8rem;
}

.text-primary[b-6y0uky40lz] {
    color: #0066ff !important;
}

.fw-bold[b-6y0uky40lz] {
    font-weight: 700;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-container[b-6y0uky40lz] {
        padding: 5px;
    }

    .form-container[b-6y0uky40lz] {
        padding: 10px;
        padding-bottom: 220px;
    }

    .form-section[b-6y0uky40lz] {
        padding: 10px;
        margin-bottom: 10px;
    }

    .section-header[b-6y0uky40lz] {
        font-size: 0.8rem;
    }

    .table-responsive[b-6y0uky40lz] {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hide horizontal scrollbar track while keeping ability to scroll tables if absolutely needed */
.table-responsive[b-6y0uky40lz]::-webkit-scrollbar {
    height: 4px;
}

.table-responsive[b-6y0uky40lz]::-webkit-scrollbar-thumb {
    background: transparent; /* Makes it essentially invisible until hover/active if I want, or just hide */
}

/* Force main body to stay within 100vw */
body[b-6y0uky40lz], .app-container[b-6y0uky40lz], .main-content[b-6y0uky40lz] {
    overflow-x: hidden !important;
}

    .sticky-footer[b-6y0uky40lz] {
        flex-direction: column;
        height: auto;
        padding: 15px 10px;
        gap: 12px;
        position: fixed;
        left: 0 !important;
        right: 0 !important;
        bottom: 0;
        z-index: 1000;
    }

    .sticky-footer .row[b-6y0uky40lz] {
        flex-wrap: wrap;
        width: 100%;
        margin: 0;
        justify-content: center !important;
    }

    .sticky-footer .col-auto[b-6y0uky40lz] {
        width: 100%;
        margin: 4px 0;
    }

    .sticky-footer .border-end[b-6y0uky40lz] {
        border-right: none !important;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 15px;
        margin-bottom: 10px;
        padding-right: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px !important;
    }

    .print-copies-selection[b-6y0uky40lz] {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 10px !important;
    }

    .total-amount-box[b-6y0uky40lz] {
        width: 100%;
        margin-top: 8px;
        padding: 10px 15px !important;
        height: auto !important;
        min-height: 45px;
        background: #f0f7ff !important;
        border: 2px solid #0d6efd !important;
    }

    .btn-premium[b-6y0uky40lz] {
        width: 100%;
        justify-content: center;
    }
}

.btn-premium-secondary[b-6y0uky40lz] {
    background: #f0f7ff;
    color: #0066ff !important;
    border: 1px solid #0066ff;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none !important;
}

.btn-premium-secondary:hover[b-6y0uky40lz] {
    background: #0066ff;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

@media (max-width: 768px) {
    .btn-premium-secondary[b-6y0uky40lz] {
        width: 100%;
        margin-top: 5px;
        padding: 10px;
    }
}

/* Premium Rates Panel */
.btn-premium-info[b-6y0uky40lz] {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white !important;
    border: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-premium-info:hover[b-6y0uky40lz] {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Compliance Alert Modal Styles - Matches Project Video */
.compliance-content-wrapper[b-6y0uky40lz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.btn-compliance-tur[b-6y0uky40lz] {
    background: #6d28d9 !important;
    /* Premium Deep Purple */
    color: white !important;
    padding: 12px 60px !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3) !important;
}

.btn-compliance-tur:hover[b-6y0uky40lz] {
    background: #5b21b6 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.4) !important;
}

.pulse-icon[b-6y0uky40lz] {
    animation: pulse-animation-b-6y0uky40lz 2s infinite;
}

@keyframes pulse-animation-b-6y0uky40lz {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.rates-section[b-6y0uky40lz] {
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rates-section:hover[b-6y0uky40lz] {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.e-grid.e-control[b-6y0uky40lz] {
    border-radius: 0 0 8px 8px;
}

.animate-pulse[b-6y0uky40lz] {
    animation: pulse-red-b-6y0uky40lz 2s infinite;
}

@keyframes pulse-red-b-6y0uky40lz {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.0);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* TUR Compliance Modal Styles - Video Style */
.tur-compliance-container[b-6y0uky40lz] {
    background: #fff;
}

.text-purple[b-6y0uky40lz] {
    color: #6d28d9 !important;
}

.btn-action-purple[b-6y0uky40lz] {
    background: #6d28d9 !important;
    color: white !important;
    border: none;
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-action-purple:hover[b-6y0uky40lz] {
    background: #5b21b6 !important;
    transform: scale(1.1);
}

.table-responsive[b-6y0uky40lz]::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.table-responsive[b-6y0uky40lz]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.table-responsive[b-6y0uky40lz]::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.compliance-dialog .e-dlg-header-content[b-6y0uky40lz] {
    background: #dc3545 !important;
    color: white !important;
    border-bottom: none !important;
    padding: 12px 20px !important;
}

.compliance-dialog .e-dlg-header-content i[b-6y0uky40lz] {
    color: white !important;
}

.compliance-dialog .e-dlg-header[b-6y0uky40lz] {
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
}

.bg-soft-info[b-6y0uky40lz] {
    background-color: rgba(13, 202, 240, 0.1);
}

.unapprove-btn[b-6y0uky40lz] {
    background: #fff8eb !important;
    color: #f59e0b !important;
    border: 1px solid #fef3c7 !important;
}

.unapprove-btn:hover[b-6y0uky40lz] {
    background: #f59e0b !important;
    color: white !important;
}

/* Grid Action Buttons */
.action-icon-btn[b-6y0uky40lz] {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    margin: 0 2px !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.action-icon-btn i[b-6y0uky40lz] {
    font-size: 0.9rem !important;
}

.action-icon-btn:hover[b-6y0uky40lz] {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    z-index: 10 !important;
}

.print-btn[b-6y0uky40lz] {
    border-color: #fbd38d !important;
    background: #fffaf0 !important;
}

.print-btn i[b-6y0uky40lz] {
    color: #dd6b20 !important;
}

.print-btn:hover[b-6y0uky40lz] {
    background: #dd6b20 !important;
    border-color: #dd6b20 !important;
}

.print-btn:hover i[b-6y0uky40lz] {
    color: #ffffff !important;
}

/* Print Dialog Custom Buttons */
/* Print Dialog Bar Buttons - Matched to Image 2 */
.print-format-btn[b-6y0uky40lz] {
    width: 100%;
    text-align: left !important;
    padding: 14px 24px !important;
    margin-bottom: 12px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    font-weight: 600 !important;
    color: white !important;
    border: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.print-format-btn:hover[b-6y0uky40lz] {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1) !important;
    filter: brightness(1.1);
}

.print-format-btn:active[b-6y0uky40lz] {
    transform: translateY(-1px) !important;
}

.btn-format-standard[b-6y0uky40lz] { background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%) !important; }
.btn-format-detailed[b-6y0uky40lz] { background: linear-gradient(135deg, #0369a1 0%, #075985 100%) !important; }
.btn-format-detailed-alt[b-6y0uky40lz] { background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important; }
.btn-format-letterpad[b-6y0uky40lz] { background: linear-gradient(135deg, #9a3412 0%, #7c2d12 100%) !important; }

.print-format-btn i[b-6y0uky40lz] {
    font-size: 1.5rem !important;
    opacity: 0.9;
}

.print-format-btn span[b-6y0uky40lz] {
    flex: 1;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.print-format-btn .format-tag[b-6y0uky40lz] {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.print-section-label[b-6y0uky40lz] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.party-print-check[b-6y0uky40lz] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.party-print-check:hover[b-6y0uky40lz] {
    background: #f1f5f9;
    border-color: #3b82f6 !important;
}
.party-print-check.active[b-6y0uky40lz] { background: #f0f7ff; border-color: #3b82f6 !important; border-width: 2px !important; }
.party-print-check span[b-6y0uky40lz] { font-size: 0.8rem; font-weight: 700; color: #475569; }
.party-print-check.active span[b-6y0uky40lz] { color: #1e40af; }
.party-print-check i[b-6y0uky40lz] { font-size: 1.2rem; transition: all 0.2s; }

/* Eway Search Section Premium Design */
.eway-search-section[b-6y0uky40lz] {
    border: none;
    border-bottom: 1px solid #edf2f7;
    border-radius: 0 !important;
    background: transparent;
    margin-bottom: 0;
    box-shadow: none;
    position: relative;
}

.eway-search-container[b-6y0uky40lz] {
    padding: 4px 10px;
    background: var(--bg-primary, #ffffff);
    position: relative;
    z-index: 101 !important;
}

.search-label[b-6y0uky40lz] {
    display: block;
    font-size: 0.72rem;
    font-weight: 710;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
}

.eway-load-btn[b-6y0uky40lz] {
    min-width: 120px;
    height: 32px;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2) !important;
    border-radius: 6px !important;
    transition: all 0.2s !important;
}

.eway-load-btn:hover[b-6y0uky40lz] {
    transform: translateY(-1px) !important;
    filter: brightness(1.1) !important;
}

.eway-transfer-btn[b-6y0uky40lz] {
    font-weight: 600 !important;
    border-radius: 6px !important;
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    color: #475569 !important;
    transition: all 0.2s !important;
}

.eway-transfer-btn:hover[b-6y0uky40lz] {
    background: #f1f5f9 !important;
    border-color: #3b82f6 !important;
    color: #1e40af !important;
    transform: translateY(-1px) !important;
}

.gst-search-wrapper .e-input-group[b-6y0uky40lz] {
    padding-right: 35px !important;
}

.gst-search-wrapper[b-6y0uky40lz] {
    position: relative;
    display: flex;
    align-items: center;
}

.gst-search-btn[b-6y0uky40lz] {
    border-radius: 0 6px 6px 0 !important;
    padding: 0 16px !important;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
    border: none !important;
    color: white !important;
    transition: filter 0.2s;
}

.gst-search-btn:hover[b-6y0uky40lz] {
    filter: brightness(1.1);
}


.eway-bill-panel[b-6y0uky40lz] {
    border: none;
    background: #f8fafc; /* Keep subtle background for list area */
    border-radius: 8px;
    margin-bottom: 5px;
    z-index: 1;
    position: relative;
}

.eway-details-panel[b-6y0uky40lz] {
    border: none;
    background: transparent;
    padding: 0;
}


/* Global Premium Enhancements */
.form-section[b-6y0uky40lz] {
    background-color: #f8fafc !important; /* Subtle gray panel background */
    margin-bottom: 8px !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
    overflow: visible !important; /* Allow popups like datepicker to show outside */
}

.form-section:last-child[b-6y0uky40lz] {
    margin-bottom: 0 !important;
}

.form-section + .form-section[b-6y0uky40lz] {
    margin-top: 0;
}

.section-header[b-6y0uky40lz] {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    margin-bottom: 6px !important;
    padding-bottom: 4px !important;
    font-size: 0.75rem !important;
    min-height: auto !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #64748b; /* Softer gray - not too dark */
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-section:first-child .section-header[b-6y0uky40lz] {
    border-top: none;
}

.section-header i[b-6y0uky40lz] {
    font-size: 1.1rem;
    color: #3b82f6;
}

.section-content-padded[b-6y0uky40lz] {
    padding: 0;
}

.form-section .row[b-6y0uky40lz] {
    padding-left: 0;
    padding-right: 0;
}

/* Clear font rendering for all input labels and values */
[b-6y0uky40lz] .e-float-text,
[b-6y0uky40lz] .e-label-top,
[b-6y0uky40lz] .e-label-bottom {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #64748b !important; /* Soft gray label */
    -webkit-font-smoothing: antialiased;
}

[b-6y0uky40lz] .e-input,
[b-6y0uky40lz] .e-input-group .e-input,
[b-6y0uky40lz] .e-control-wrapper .e-input {
    font-size: 13px !important;
    font-weight: 400 !important; /* Normal weight */
    color: #334155 !important; /* Medium dark - readable but not harsh */
    -webkit-font-smoothing: antialiased;
}

[b-6y0uky40lz] .e-ddl .e-input,
[b-6y0uky40lz] .e-dropdownlist .e-input {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #334155 !important;
}

.premium-input-label[b-6y0uky40lz] {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    margin-top: 2px;
}

.eway-table-header th[b-6y0uky40lz] {
    background: #f1f5f9 !important;
    color: #475569 !important;
    font-size: 0.72rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 10px !important;
    z-index: 2 !important; /* Extremely low to ensure popups are always on top */
    position: relative; /* Ensure z-index is applied */
}

.eway-table-row:hover[b-6y0uky40lz] {
    background-color: #f8fafc !important;
}

.eway-table-row.selected[b-6y0uky40lz] {
    background-color: #f0f7ff !important;
}

.duplicate-row[b-6y0uky40lz] {
    background-color: #fef2f2 !important; /* Extremely light red background */
    opacity: 0.8;
}

.duplicate-row .fw-bold[b-6y0uky40lz] {
    color: #991b1b !important; /* Dark red text */
    text-decoration: line-through solid rgba(185, 28, 28, 0.4);
}

.selected-info-header[b-6y0uky40lz] {
    background: transparent;
    padding: 0 0 8px 0;
    margin-bottom: 8px;
    color: #0369a1;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed #cbd5e1;
}

.validation-message[b-6y0uky40lz] {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ef4444;
    margin-top: 4px;
    display: block;
}

/* Ensure Syncfusion inputs look premium */
.e-input-group.e-control-wrapper.e-outline[b-6y0uky40lz] {
    border-radius: 6px !important;
    transition: all 0.2s ease;
}

.e-input-group.e-control-wrapper.e-outline.e-input-focus[b-6y0uky40lz] {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.e-control-wrapper .e-input:hover[b-6y0uky40lz] {
    border-color: #cbd5e1;
}

.e-datepicker.e-popup[b-6y0uky40lz], .e-datetimepicker.e-popup[b-6y0uky40lz], .e-popup.e-control.e-lib[b-6y0uky40lz], .e-popup[b-6y0uky40lz], .e-popup-wrapper[b-6y0uky40lz], .e-popups-wrapper[b-6y0uky40lz] {
    z-index: 20000000 !important;
    background-color: #ffffff !important; /* Solid background to prevent overlap transparency */
    box-shadow: 0 5px 25px rgba(0,0,0,0.35) !important;
    border: 1px solid #cbd5e1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Crucial: Ensure the calendar internal elements have solid backgrounds */
.e-calendar[b-6y0uky40lz], .e-calendar .e-content[b-6y0uky40lz], .e-calendar .e-header[b-6y0uky40lz], .e-calendar .e-footer[b-6y0uky40lz] {
    background-color: #ffffff !important;
}

/* Improve visibility of disabled fields */
.e-control-wrapper.e-disabled[b-6y0uky40lz], 
.e-input-group.e-disabled[b-6y0uky40lz], 
.e-input-group.e-control-wrapper.e-disabled[b-6y0uky40lz],
.e-dropdownlist.e-disabled[b-6y0uky40lz],
.e-numerictextbox.e-disabled[b-6y0uky40lz] {
    background-color: #f8fafc !important; /* Soft premium grey */
    opacity: 1 !important;
}

.e-control-wrapper.e-disabled .e-input[b-6y0uky40lz], 
.e-input-group.e-disabled .e-input[b-6y0uky40lz],
.e-input-group.e-control-wrapper.e-disabled .e-input[b-6y0uky40lz],
.e-dropdownlist.e-disabled .e-input[b-6y0uky40lz],
.e-numerictextbox.e-disabled .e-input[b-6y0uky40lz],
.e-disabled input[b-6y0uky40lz],
input[disabled][b-6y0uky40lz] {
    color: #1e293b !important; /* Deep readable blue/grey */
    -webkit-text-fill-color: #1e293b !important;
    font-weight: 600 !important;
    background-color: transparent !important;
}

.e-float-input.e-disabled label.e-float-text[b-6y0uky40lz],
.e-float-input.e-disabled input:disabled ~ label.e-float-text[b-6y0uky40lz],
.e-float-input.e-control-wrapper.e-disabled label.e-float-text[b-6y0uky40lz],
.e-float-input.e-control-wrapper.e-disabled .e-label-top[b-6y0uky40lz] {
    color: #475569 !important;
    opacity: 1 !important;
}

/* Override DetailsGrid for GCNs */
.voucher-details-section[b-6y0uky40lz] {
    margin-top: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.table-responsive.border.rounded[b-6y0uky40lz] {
    border-radius: 4px !important;
    border-color: #f1f5f9 !important;
}

.table.table-sm thead.bg-light th[b-6y0uky40lz] {
    background-color: #f8fafc !important;
    color: #475569 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    padding: 10px !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

/* Hide scrollbars globally for this page */
[b-6y0uky40lz]::webkit-scrollbar {
    display: none !important;
}

html[b-6y0uky40lz], body[b-6y0uky40lz] {
    overflow-x: hidden !important;
}

.breadcrumb-nav[b-6y0uky40lz] {
    margin-bottom: 2px !important;
    padding: 2px 8px !important;
}

/* --- Premium Print Dialog Styles --- */
.print-dialog-header[b-6y0uky40lz] {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
}

.print-format-btn[b-6y0uky40lz] {
    padding: 16px 20px !important;
    border-radius: 10px !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    border-left: 5px solid rgba(0,0,0,0.1) !important;
}

.print-format-btn:hover[b-6y0uky40lz] {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    filter: brightness(1.1);
}

.format-standard[b-6y0uky40lz] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    border-left-color: #1e3a8a !important;
}

.format-letterpad[b-6y0uky40lz] {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%) !important;
    border-left-color: #78350f !important;
}

.copy-selection-card[b-6y0uky40lz] {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 10px;
}

.copy-label[b-6y0uky40lz] {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 5px;
}

.btn-select-all[b-6y0uky40lz] {
    background: white !important;
    color: #475569 !important;
    border: 1px solid #e2e8f0 !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    border-radius: 6px !important;
    padding: 6px 12px !important;
    transition: all 0.2s !important;
}

.btn-select-all:hover[b-6y0uky40lz] {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #1e293b !important;
}

.print-loading-overlay[b-6y0uky40lz] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.spinner-border[b-6y0uky40lz] {
    border-width: 0.25em;
    animation-duration: 0.75s;
}

.opacity-25[b-6y0uky40lz] { opacity: 0.25; }
.pe-none[b-6y0uky40lz] { pointer-events: none; }
/* /Pages/Master/IncomingEwayBill.razor.rz.scp.css */
/* CSS reverted to standard */
.page-container[b-a18hmk422z] {
    padding: 8px;
    background-color: var(--bg-tertiary);
    min-height: calc(100vh - 60px);
}

.grid-container[b-a18hmk422z] {
    background: var(--bg-secondary);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    padding: 10px;
    border: 1px solid var(--border-color);
}
/* /Pages/Master/ItemCategory.razor.rz.scp.css */
.form-container[b-y9317tc6fi] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-header[b-y9317tc6fi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.form-header h3[b-y9317tc6fi] {
    margin: 0;
    color: #212529;
    font-weight: 600;
}

.form-actions[b-y9317tc6fi] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.validation-message[b-y9317tc6fi] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.badge-success[b-y9317tc6fi] {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.badge-danger[b-y9317tc6fi] {
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}
/* /Pages/Master/MemoDetailPanel.razor.rz.scp.css */
/* Popup Styles */
.detail-popup-content[b-z5wuciwwnl] {
    background: #f8f9fa;
}

.detail-tabs[b-z5wuciwwnl] {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0;
}

.tab-item[b-z5wuciwwnl] {
    padding: 12px 24px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    color: #6c757d;
    border-right: 1px solid #dee2e6;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    user-select: none;
}

.tab-item:hover[b-z5wuciwwnl] {
    background: #fff;
    color: #0056b3;
}

.tab-item.active[b-z5wuciwwnl] {
    background: #fff;
    color: #0056b3;
}

.tab-item.active[b-z5wuciwwnl]::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0066ff;
}

.content-inner[b-z5wuciwwnl] {
    padding: 20px;
    background: #f8f9fa;
    max-height: 70vh;
    overflow-y: auto;
}

.card-header-blue[b-z5wuciwwnl] {
    background: #f0f7ff;
    border-bottom: 2px solid #0066ff33;
    color: #0056b3;
    padding: 10px 15px;
    font-weight: 710;
    font-size: 0.75rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body-white[b-z5wuciwwnl] {
    background: #fff;
    padding: 15px;
}

.detail-card[b-z5wuciwwnl] {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.custom-detail-table th[b-z5wuciwwnl] {
    font-size: 0.72rem;
    font-weight: 700;
    color: #495057;
    text-transform: uppercase;
    background: #f8f9fa;
    padding: 8px !important;
}

.custom-detail-table td[b-z5wuciwwnl] {
    font-size: 0.75rem;
    padding: 8px !important;
    vertical-align: middle;
}

.cursor-pointer[b-z5wuciwwnl] {
    cursor: pointer;
}

.fw-black[b-z5wuciwwnl] {
    font-weight: 900;
}

.uppercase[b-z5wuciwwnl] {
    text-transform: uppercase;
}
/* /Pages/Master/PendingIncomingMemos.razor.rz.scp.css */
.grid-link[b-x2lo4aold2] {
    color: #0066ff !important;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px dashed transparent;
}


.grid-link:hover[b-x2lo4aold2] {
    color: #0044aa !important;
    border-bottom: 1px dashed #0066ff;
}

/* Fix for missing button colors in grid */
/* Updated button colors and shapes */
.btn-purple[b-x2lo4aold2] {
    background-color: #9333ea !important;
    /* Proper purple shade */
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(147, 51, 234, 0.15);
    transition: all 0.2s ease;
}

.btn-teal[b-x2lo4aold2] {
    background-color: #0d9488 !important;
    /* Proper teal/ocean shade */
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(13, 148, 136, 0.15);
    transition: all 0.2s ease;
}

.btn-purple:hover[b-x2lo4aold2],
.btn-teal:hover[b-x2lo4aold2] {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0.9 !important;
    color: #fff !important;
}

/* Proper background for days column */
.days-badge[b-x2lo4aold2] {
    background-color: #f1f5f9;
    color: #475569;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 11px;
    display: inline-block;
    border: 1px solid #e2e8f0;
}

/* Page Container Enhancements */
.page-container[b-x2lo4aold2] {
    padding: 1rem 1.5rem;
    background-color: #f1f5f9;
}

.custom-radio .e-radio-wrapper[b-x2lo4aold2] {
    margin-right: 0;
}

.custom-radio .e-label[b-x2lo4aold2] {
    font-weight: 600;
    font-size: 0.85rem;
    color: #475569;
}

.card[b-x2lo4aold2] {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.fw-black[b-x2lo4aold2] {
    font-weight: 900 !important;
}

/* Grid Specifics */
.e-grid .e-headercell[b-x2lo4aold2] {
    background-color: #f8fafc !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.e-grid .e-headertext[b-x2lo4aold2] {
    color: #334155 !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.5px !important;
}

.e-grid .e-rowcell[b-x2lo4aold2] {
    font-size: 0.82rem !important;
    padding: 8px 10px !important;
}
/* /Pages/Master/SendBillEmailSMS.razor.rz.scp.css */
.form-container[b-exuy3ayudj] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-header[b-exuy3ayudj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.form-header h3[b-exuy3ayudj] {
    margin: 0;
    color: #212529;
    font-weight: 600;
}

.form-actions[b-exuy3ayudj] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.validation-message[b-exuy3ayudj] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.badge-success[b-exuy3ayudj] {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.badge-danger[b-exuy3ayudj] {
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}
/* /Pages/Master/Subscriptions.razor.rz.scp.css */
.form-container[b-whf88ktguk] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-header[b-whf88ktguk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

    .form-header h3[b-whf88ktguk] {
        margin: 0;
        color: #212529;
        font-weight: 600;
    }

.form-actions[b-whf88ktguk] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.validation-message[b-whf88ktguk] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.badge-success[b-whf88ktguk] {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.badge-danger[b-whf88ktguk] {
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}
/* /Pages/Master/THCPayment.razor.rz.scp.css */
.page-container[b-0cbreamkas] {
    padding: 1rem 1.5rem;
    background-color: #f1f5f9;
    min-height: 100vh;
}

.payment-layout[b-0cbreamkas] {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.form-side[b-0cbreamkas] {
    flex: 0 0 340px;
}

.detail-side[b-0cbreamkas] {
    flex: 1;
}

.custom-card[b-0cbreamkas] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}

.section-label-blue[b-0cbreamkas] {
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.6rem;
}

.section-label-blue i[b-0cbreamkas] {
    font-size: 1.1rem;
}

/* Detail Sectioning */
.form-section-inner[b-0cbreamkas] {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    background: #f8fafc;
    margin-bottom: 1rem;
}

/* Summary Grid - 1 Row */
.summary-row[b-0cbreamkas] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.summary-item[b-0cbreamkas] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.summary-label[b-0cbreamkas] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.summary-value[b-0cbreamkas] {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    text-align: right;
}

.summary-value.highlight[b-0cbreamkas] {
    color: #2563eb;
}

.summary-value.text-danger[b-0cbreamkas] {
    color: #ef4444;
}

/* Buttons */
.form-actions-center[b-0cbreamkas] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.grid-card[b-0cbreamkas] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

/* Transitions */
.fade-in[b-0cbreamkas] {
    animation: fadeIn-b-0cbreamkas 0.2s ease-out;
}

@keyframes fadeIn-b-0cbreamkas {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1400px) {
    .summary-row[b-0cbreamkas] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .payment-layout[b-0cbreamkas] {
        flex-direction: column;
    }

    .form-side[b-0cbreamkas] {
        flex: 1 1 100%;
        width: 100%;
    }
}
/* /Pages/Master/THCPendingPayment.razor.rz.scp.css */
.grid-link[b-kq3ecmlc4m] {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s;
}

.grid-link:hover[b-kq3ecmlc4m] {
    color: var(--primary-dark) !important;
    text-decoration: underline !important;
}

.search-underlined-wrapper[b-kq3ecmlc4m] {
    position: relative;
    width: 250px;
}

.search-underlined-wrapper .bi-search[b-kq3ecmlc4m] {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 5;
    pointer-events: none;
}

[b-kq3ecmlc4m] .search-underlined .e-input-group {
    border: none !important;
    border-bottom: 2px solid #9333ea !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

[b-kq3ecmlc4m] .search-underlined .e-input-group:focus-within {
    border-bottom-color: var(--primary-color) !important;
}

[b-kq3ecmlc4m] .search-underlined .e-input {
    padding-right: 25px !important;
}

/* THC Pending Payment - Action buttons */
.btn-teal[b-kq3ecmlc4m] {
    background-color: #0d9488 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    box-shadow: 0 1px 3px rgba(13, 148, 136, 0.15);
    transition: all 0.2s ease;
}

.btn-teal:hover[b-kq3ecmlc4m] {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    opacity: 0.9 !important;
    color: #fff !important;
}

.filter-btn[b-kq3ecmlc4m] {
    min-height: 32px;
    font-size: 0.82rem !important;
}
/* /Pages/Master/THCPopup.razor.rz.scp.css */
/* Popup Styles */
.detail-popup-content[b-qy48iztjkm] {
    background: #f8f9fa;
}

.detail-tabs[b-qy48iztjkm] {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #ddd;
    padding: 0;
}

.tab-item[b-qy48iztjkm] {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    border-top: 2px solid transparent;
    transition: all 0.2s;
    user-select: none;
    background: #eee;
    border-right: 1px solid #ddd;
}

.tab-item:hover[b-qy48iztjkm] {
    background: #fff;
    color: #0056b3;
}

.tab-item.active[b-qy48iztjkm] {
    background: #fff;
    color: #0066ff;
    /* Project Blue */
    border-top: 2px solid #0066ff;
}

.content-inner[b-qy48iztjkm] {
    padding: 15px;
    background: #fff;
    max-height: 75vh;
    overflow-y: auto;
}

.card-header-orange[b-qy48iztjkm] {
    background: #fff3e0;
    border-bottom: 2px solid #fb8c00;
    color: #e65100;
    padding: 8px 12px;
    font-weight: bold;
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
}

.card-body-white[b-qy48iztjkm] {
    background: #fff;
    padding: 12px;
}

.detail-card[b-qy48iztjkm] {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.detail-label[b-qy48iztjkm] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    display: inline-block;
    min-width: 100px;
}

.detail-value[b-qy48iztjkm] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

.payment-row[b-qy48iztjkm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* /Pages/Master/TURs.razor.rz.scp.css */
.page-container[b-uttofx322v] {
    padding: 2px !important;
}

.breadcrumb-container[b-uttofx322v] {
    margin-bottom: 2px !important;
    padding: 2px 8px !important;
}

.form-container[b-uttofx322v] {
    padding: 4px !important;
    padding-bottom: 50px !important;
}

.form-section[b-uttofx322v] {
    margin-bottom: 12px !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
}

.section-header[b-uttofx322v] {
    margin-bottom: 4px !important;
    padding-bottom: 1px !important;
    font-size: 0.78rem !important;
    min-height: auto !important;
}

.section-header i[b-uttofx322v] {
    font-size: 11px !important;
}

.row[b-uttofx322v] {
    --bs-gutter-x: 0.75rem !important;
    --bs-gutter-y: 0.4rem !important;
}

.col-md-2[b-uttofx322v],
.col-md-3[b-uttofx322v],
.col-md-4[b-uttofx322v],
.col-md-6[b-uttofx322v],
.col-12[b-uttofx322v] {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}

.mb-2[b-uttofx322v] {
    margin-bottom: 0.15rem !important;
}

.mb-1[b-uttofx322v] {
    margin-bottom: 0.05rem !important;
}

/* Compact Syncfusion */
[b-uttofx322v] .e-control-wrapper.e-small .e-float-input.e-control-wrapper.e-float-text,
[b-uttofx322v] .e-control-wrapper.e-small .e-float-input.e-control-wrapper.e-label-top,
[b-uttofx322v] .e-small .e-input-group.e-control-wrapper {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

[b-uttofx322v] .e-outline.e-control-wrapper.e-small {
    height: 40px !important;
    margin-top: 5px;
}



/* Ensure the floating label is aligned across all types */
[b-uttofx322v] .e-outline.e-float-input.e-small .e-float-text,
[b-uttofx322v] .e-outline.e-float-input.e-control-wrapper.e-small .e-float-text {
    font-size: 12px;
}

/* Fix for Dropdown specific wrapper to match DatePicker */
[b-uttofx322v] .e-dropdownlist.e-outline.e-small.e-control-wrapper {
    display: flex;
    align-items: center;
}

/* ===== Tab Header - Active Tab Filled Background ===== */
[b-uttofx322v] .e-tab .e-tab-header .e-toolbar-item.e-active {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    border-radius: 4px 4px 0 0 !important;
}

[b-uttofx322v] .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text {
    color: #ffffff !important;
    font-weight: 700 !important;
}

[b-uttofx322v] .e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
    background: transparent !important;
}

/* Inactive tab text */
[b-uttofx322v] .e-tab .e-tab-header .e-toolbar-item .e-tab-text {
    color: #64748b !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
}

/* Inactive tab hover */
[b-uttofx322v] .e-tab .e-tab-header .e-toolbar-item:not(.e-active):hover {
    background-color: #f1f5f9 !important;
    border-radius: 4px 4px 0 0 !important;
}

/* Hide the default bottom indicator line */
[b-uttofx322v] .e-tab .e-tab-header .e-indicator {
    display: none !important;
}

/* Sticky Footer */
.sticky-footer[b-uttofx322v] {
    height: 45px !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
}

.sticky-footer[b-uttofx322v]  .e-btn {
    padding: 2px 16px !important;
    height: 34px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
}

.sticky-footer i[b-uttofx322v] {
    font-size: 12px !important;
}

/* ===== FORCE FULL WHITE BACKGROUND ===== */

/* Page main container */
.page-container[b-uttofx322v],
.form-container[b-uttofx322v],
.form-section[b-uttofx322v] {
    background-color: #ffffff !important;
}

/* Syncfusion Tab main container */
[b-uttofx322v] .e-tab {
    background-color: #ffffff !important;
}

/* Tab content area */
[b-uttofx322v] .e-tab .e-content,
[b-uttofx322v] .e-tab .e-item {
    background-color: #ffffff !important;
}

/* Grid background */
[b-uttofx322v] .e-grid {
    background-color: #ffffff !important;
}

/* Grid header background */
[b-uttofx322v] .e-grid .e-headercontent {
    background-color: #ffffff !important;
}

/* Remove unwanted grey */
body[b-uttofx322v] {
    background-color: #ffffff !important;
}
/* /Pages/Master/Users.razor.rz.scp.css */
.form-container[b-6keworsxqf] {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.form-header[b-6keworsxqf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.form-header h3[b-6keworsxqf] {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.form-actions[b-6keworsxqf] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.validation-message[b-6keworsxqf] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.badge-success[b-6keworsxqf] {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.badge-danger[b-6keworsxqf] {
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}
/* /Pages/Transaction/AccountInvoice.razor.rz.scp.css */
/* /Pages/Transaction/AccountVoucher.razor.rz.scp.css */
.balance-display[b-yhey1nct7v] {
    font-size: 0.85rem;
    padding: 0px 10px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    white-space: nowrap;
    height: 32px;
    /* Matches standard small button height */
    display: flex;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.account-actions-row-beside[b-yhey1nct7v] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.2rem;
    /* Aligns with input field when FloatLabel is Auto/Always */
}

/* Action Buttons Styling */
.e-icon-btn.e-outline[b-yhey1nct7v] {
    border-radius: 4px;
    transition: all 0.2s;
}

.e-btn.e-xsmall[b-yhey1nct7v] {
    padding: 2px 4px !important;
    min-width: 24px !important;
    height: 24px !important;
}

.balance-display .label[b-yhey1nct7v] {
    color: #6c757d;
    margin-right: 4px;
    font-weight: 500;
}

.balance-display .amount[b-yhey1nct7v] {
    font-weight: 700;
}

/* Ensure the sticky footer is correctly positioned if not already global */
.sticky-footer[b-yhey1nct7v] {
    position: fixed;
    bottom: 0;
    background: #fff;
    padding: 1rem 2rem;
    border-top: 1px solid #dee2e6;
    z-index: 100;
}

.form-container[b-yhey1nct7v] {
    padding-bottom: 80px;
    /* Space for fixed footer */
}

/* Syncfusion consistency */
.e-outline.fw-bold input[b-yhey1nct7v] {
    font-weight: 700 !important;
}

/* Action Buttons Styling */
.e-icon-btn.e-outline[b-yhey1nct7v] {
    border-radius: 4px;
    transition: all 0.2s;
}

.e-icon-btn.e-outline:hover[b-yhey1nct7v] {
    background: var(--primary-light, #e7f1ff) !important;
    transform: translateY(-1px);
}

.border-success[b-yhey1nct7v] {
    border-color: #28a745 !important;
}

.text-success[b-yhey1nct7v] {
    color: #28a745 !important;
}

.border-success:hover[b-yhey1nct7v] {
    background: #e8f5e9 !important;
}
/* /Pages/Transaction/BillAddEdit.razor.rz.scp.css */
.page-container[b-87fechoem2] {
    padding: 10px !important;
}

.form-container[b-87fechoem2] {
    padding: 16px !important;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding-bottom: 70px !important; /* Space for sticky footer */
}

.form-section[b-87fechoem2] {
    margin-bottom: 16px !important;
    padding: 16px !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary) !important;
}

.section-header[b-87fechoem2] {
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    font-size: 0.9rem !important;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .section-header i[b-87fechoem2] {
        font-size: 14px !important;
        color: var(--primary-color);
    }

/* Compact layout */
.row[b-87fechoem2] {
    --bs-gutter-x: 1rem !important;
    --bs-gutter-y: 0.75rem !important;
}

/* Sticky Footer */
.sticky-footer[b-87fechoem2] {
    /* position: fixed; bottom: 0; left/right: handled by app.css */
    background: var(--bg-primary) !important;
    border-top: 1px solid var(--border-color);
    padding: 0 20px !important;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

    .sticky-footer[b-87fechoem2]  .e-btn {
        padding: 4px 24px !important;
        height: 38px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        border-radius: var(--radius-md) !important;
    }

/* Table styles for GCN grid */
.table-sm[b-87fechoem2] {
    font-size: 11px;
}

.table thead th[b-87fechoem2] {
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    vertical-align: middle;
    padding: 8px 4px;
}

.font-red-flamingo[b-87fechoem2] {
    color: #e35b5a !important;
}

.sbold[b-87fechoem2] {
    font-weight: 600 !important;
}

.btn-premium[b-87fechoem2] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    border: none !important;
}
/* /Pages/Transaction/Invoices.razor.rz.scp.css */
.form-container[b-nyjom1e1bt] {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.form-header[b-nyjom1e1bt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

    .form-header h3[b-nyjom1e1bt] {
        margin: 0;
        color: var(--text-primary);
        font-weight: 600;
    }

.form-actions[b-nyjom1e1bt] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.validation-message[b-nyjom1e1bt] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.badge-success[b-nyjom1e1bt] {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.badge-danger[b-nyjom1e1bt] {
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.invoice-summary[b-nyjom1e1bt] {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #f8f9fa;
}

.summary-row[b-nyjom1e1bt] {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.summary-label[b-nyjom1e1bt] {
    font-weight: 600;
    color: #6c757d;
}

.summary-value[b-nyjom1e1bt] {
    font-weight: 600;
    min-width: 120px;
    text-align: right;
}

.summary-row.total[b-nyjom1e1bt] {
    font-size: 1.25rem;
    color: #0d6efd;
    border-top: 1px solid #dee2e6;
    padding-top: 0.5rem;
}

.line-item-entry[b-nyjom1e1bt] {
    background: var(--bg-secondary) !important;
}

/* Zoho Books Style Invoice Items Grid */
.invoice-items-grid[b-nyjom1e1bt] {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

    .invoice-items-grid .e-grid[b-nyjom1e1bt] {
        border: none;
    }

        .invoice-items-grid .e-grid .e-headercell[b-nyjom1e1bt] {
            background: var(--bg-secondary);
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 16px;
            border-bottom: 2px solid var(--border-color);
        }

        .invoice-items-grid .e-grid .e-rowcell[b-nyjom1e1bt] {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
        }

/* Item Details Cell Styling */
.item-details-cell[b-nyjom1e1bt] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-name[b-nyjom1e1bt] {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.item-description[b-nyjom1e1bt] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Edit Mode Styling */
.edit-item-column[b-nyjom1e1bt] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

    .edit-item-column .e-input-group[b-nyjom1e1bt],
    .edit-item-column .e-float-input[b-nyjom1e1bt] {
        min-height: 32px !important;
    }

        .edit-item-column .e-input-group input[b-nyjom1e1bt],
        .edit-item-column .e-float-input input[b-nyjom1e1bt] {
            font-size: 0.875rem !important;
            padding: 6px 8px !important;
            height: 32px !important;
        }

.invoice-items-grid .e-grid .e-gridform .e-rowcell[b-nyjom1e1bt] {
    padding: 12px;
    background: var(--bg-tertiary);
    vertical-align: top;
}

    .invoice-items-grid .e-grid .e-gridform .e-rowcell .e-input-group[b-nyjom1e1bt],
    .invoice-items-grid .e-grid .e-gridform .e-rowcell .e-float-input[b-nyjom1e1bt],
    .invoice-items-grid .e-grid .e-gridform .e-rowcell .e-ddl[b-nyjom1e1bt] {
        min-height: 32px !important;
    }

    .invoice-items-grid .e-grid .e-gridform .e-rowcell input[b-nyjom1e1bt],
    .invoice-items-grid .e-grid .e-gridform .e-rowcell .e-input[b-nyjom1e1bt] {
        font-size: 0.875rem !important;
        padding: 6px 8px !important;
        height: 32px !important;
    }

/* Toolbar Styling */
.invoice-items-grid .e-toolbar[b-nyjom1e1bt] {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 12px;
}

    .invoice-items-grid .e-toolbar .e-toolbar-item .e-btn[b-nyjom1e1bt] {
        font-size: 0.875rem;
        padding: 6px 16px;
        border-radius: 6px;
    }

/* Add and Delete Item Buttons */
.btn-add-item[b-nyjom1e1bt] {
    background: transparent;
    border: none;
    color: var(--primary-color, #0d6efd);
    font-size: 1.5rem;
    padding: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

    .btn-add-item:hover[b-nyjom1e1bt] {
        color: var(--primary-hover, #0b5ed7);
        transform: scale(1.1);
    }

.btn-add-item-row[b-nyjom1e1bt] {
    background: transparent;
    border: none;
    color: var(--primary-color, #0d6efd);
    font-size: 1.2rem;
    padding: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

    .btn-add-item-row:hover[b-nyjom1e1bt] {
        color: var(--primary-hover, #0b5ed7);
        transform: scale(1.1);
    }

.btn-delete-item[b-nyjom1e1bt] {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    font-size: 0.875rem;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-delete-item:hover[b-nyjom1e1bt] {
        background: #dc3545;
        color: white;
    }

/* Empty Grid Message */
.invoice-items-grid .e-emptyrow[b-nyjom1e1bt] {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Totals Card Styling */
.totals-card[b-nyjom1e1bt] {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color) !important;
}

/* Section Title */
.section-title[b-nyjom1e1bt] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

/* Responsive Grid Cells */
@media (max-width: 768px) {

    .invoice-items-grid .e-grid .e-rowcell[b-nyjom1e1bt],
    .invoice-items-grid .e-grid .e-headercell[b-nyjom1e1bt] {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}
/* /Pages/Transaction/JournalVoucher.razor.rz.scp.css */
/* Journal Voucher Specific Styles */

.voucher-details-section[b-n3nngvk9k0] {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.details-header[b-n3nngvk9k0] {
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px 6px 0 0;
    margin-bottom: 0px;
    font-weight: 600;
}

/* Inline Table Styles */

.table .e-input-group[b-n3nngvk9k0],
.table .e-dropdownlist[b-n3nngvk9k0],
.table .e-autocomplete[b-n3nngvk9k0],
.table .e-numerictextbox[b-n3nngvk9k0] {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.table .e-input-group:focus-within[b-n3nngvk9k0],
.table .e-dropdownlist.e-input-focus[b-n3nngvk9k0],
.table .e-autocomplete.e-input-focus[b-n3nngvk9k0] {
    border-bottom: 2px solid var(--primary-color) !important;
    background: rgba(var(--primary-rgb), 0.05) !important;
}

.voucher-details-section .table thead th[b-n3nngvk9k0] {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.voucher-details-section .table td[b-n3nngvk9k0] {
    padding: 0.5rem;
    vertical-align: middle;
}

.voucher-details-section .table tbody tr:hover[b-n3nngvk9k0] {
    background-color: var(--hover-bg);
}

.details-header .row[b-n3nngvk9k0] {
    margin: 0;
}

.details-body[b-n3nngvk9k0] {
    min-height: 100px;
    max-height: 400px;
    overflow-y: auto;
}

.detail-row[b-n3nngvk9k0] {
    padding: 10px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    align-items: center;
    transition: all 0.3s ease;
}

.detail-row:hover[b-n3nngvk9k0] {
    background: var(--hover-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.row-number[b-n3nngvk9k0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
}

.no-records[b-n3nngvk9k0] {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.add-detail-row[b-n3nngvk9k0] {
    text-align: left;
    padding-top: 10px;
}

.totals-section[b-n3nngvk9k0] {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
}

.totals-table[b-n3nngvk9k0] {
    width: 100%;
    font-size: 16px;
}

.totals-table tr[b-n3nngvk9k0] {
    border-bottom: 1px solid var(--border-color);
}

.totals-table td[b-n3nngvk9k0] {
    padding: 10px;
}

.totals-table tr:last-child[b-n3nngvk9k0] {
    border-bottom: 2px solid var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.text-danger[b-n3nngvk9k0] {
    color: #dc3545 !important;
}

.text-success[b-n3nngvk9k0] {
    color: #28a745 !important;
}

/* Dark Mode Support */
:root[data-theme="dark"] .voucher-details-section[b-n3nngvk9k0] {
    background: var(--card-bg-dark);
    border-color: var(--border-color-dark);
}

:root[data-theme="dark"] .detail-row[b-n3nngvk9k0] {
    background: var(--input-bg-dark);
    border-color: var(--border-color-dark);
}

:root[data-theme="dark"] .detail-row:hover[b-n3nngvk9k0] {
    background: var(--hover-bg-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .details-header[b-n3nngvk9k0] {
        display: none;
    }

    .detail-row[b-n3nngvk9k0] {
        flex-direction: column;
        gap: 10px;
    }

    .detail-row>div[b-n3nngvk9k0] {
        width: 100% !important;
    }

    .totals-table[b-n3nngvk9k0] {
        font-size: 14px;
    }
}
/* /Pages/Transaction/Payment.razor.rz.scp.css */
/* Payment Page Styles */

.voucher-details-section[b-artrgd1nfi] {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
}

.voucher-details-section .table thead th[b-artrgd1nfi] {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.voucher-details-section .table td[b-artrgd1nfi] {
    padding: 0.5rem;
    vertical-align: middle;
}

.voucher-details-section .table tbody tr:hover[b-artrgd1nfi] {
    background-color: var(--hover-bg);
}

.totals-section[b-artrgd1nfi] {
    padding: 1rem 0;
}

.totals-table[b-artrgd1nfi] {
    width: 100%;
    border-collapse: collapse;
}

.totals-table tr[b-artrgd1nfi] {
    border-top: 1px solid var(--border-color);
}

.totals-table td[b-artrgd1nfi] {
    padding: 0.5rem;
}

.totals-table td:last-child[b-artrgd1nfi] {
    font-weight: 600;
    color: var(--primary-color);
}

/* Form label styling */
.form-label[b-artrgd1nfi] {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Radio button spacing */
.e-radio+label[b-artrgd1nfi] {
    margin-right: 1rem;
}
/* /Pages/User/Settings.razor.rz.scp.css */
.settings-container[b-lvk0vves90] {
    padding: 10px;
}

.settings-card[b-lvk0vves90] {
    background: var(--bg-primary);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.tab-pane[b-lvk0vves90] {
    padding: 32px;
}

.settings-section-title[b-lvk0vves90] {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.settings-option[b-lvk0vves90] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.settings-option:last-of-type[b-lvk0vves90] {
    border-bottom: none;
}

.option-info[b-lvk0vves90] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-title[b-lvk0vves90] {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.option-desc[b-lvk0vves90] {
    font-size: 13px;
    color: var(--text-tertiary);
}

.settings-footer[b-lvk0vves90] {
    padding: 20px 32px;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Syncfusion Tab Styling Overrides */
[b-lvk0vves90] .e-tab .e-tab-header {
    background: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

[b-lvk0vves90] .e-tab .e-tab-header .e-toolbar-item .e-tab-text {
    font-weight: 600 !important;
    font-size: 14px !important;
}

.color-grid-settings[b-lvk0vves90] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 16px;
    margin: 20px 0 32px 0;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.color-option-settings[b-lvk0vves90] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-option-settings:hover[b-lvk0vves90] {
    transform: translateY(-2px);
}

.color-circle-settings[b-lvk0vves90] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.color-option-settings.selected .color-circle-settings[b-lvk0vves90] {
    border-color: #fff;
    box-shadow: 0 0 0 4px var(--primary-color), 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.color-circle-settings i[b-lvk0vves90] {
    color: white;
    font-size: 24px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.color-name-settings[b-lvk0vves90] {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* /Pages/User/UserProfile.razor.rz.scp.css */
.profile-container[b-y33b8owao3] {
    padding: 10px;
}

.profile-grid[b-y33b8owao3] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

.profile-sidebar-card[b-y33b8owao3] {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
}

.user-avatar-large[b-y33b8owao3] {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.user-name-title[b-y33b8owao3] {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.user-role-badge[b-y33b8owao3] {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(37, 99, 235, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.user-info-quick[b-y33b8owao3] {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: left;
    margin-bottom: 24px;
}

.info-item[b-y33b8owao3] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.content-card[b-y33b8owao3] {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.card-header[b-y33b8owao3] {
    margin-bottom: 24px;
}

.card-title[b-y33b8owao3] {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-subtitle[b-y33b8owao3] {
    font-size: 14px;
    color: var(--text-tertiary);
}

.card-footer-actions[b-y33b8owao3] {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.security-list[b-y33b8owao3] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-item[b-y33b8owao3] {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    gap: 16px;
}

.sec-icon[b-y33b8owao3] {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.sec-icon.status-active[b-y33b8owao3] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.sec-details[b-y33b8owao3] {
    flex: 1;
}

.sec-title[b-y33b8owao3] {
    display: block;
    font-weight: 600;
    font-size: 15px;
}

.sec-desc[b-y33b8owao3] {
    font-size: 13px;
    color: var(--text-tertiary);
}

@media (max-width: 900px) {
    .profile-grid[b-y33b8owao3] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/User/UserRights.razor.rz.scp.css */
.toolbar-section[b-5clynr1koz] {
    padding: 1.5rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.user-dropdown-item[b-5clynr1koz] {
    padding: 0.25rem 0;
}

.user-name[b-5clynr1koz] {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.user-email[b-5clynr1koz] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.125rem;
}

.empty-state[b-5clynr1koz] {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    margin: 1.5rem;
    border-radius: 8px;
}

.empty-state-icon[b-5clynr1koz] {
    margin-bottom: 1.5rem;
    color: #dee2e6;
}

.empty-state h3[b-5clynr1koz] {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state p[b-5clynr1koz] {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.fw-bold[b-5clynr1koz] {
    font-weight: 600;
    color: #0f172a;
}

.ps-4[b-5clynr1koz] {
    padding-left: 1.5rem;
}

.text-muted[b-5clynr1koz] {
    color: #6c757d;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-ithwuo2ute] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ithwuo2ute] {
    flex: 1;
}

.sidebar[b-ithwuo2ute] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ithwuo2ute] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ithwuo2ute]  a, .top-row .btn-link[b-ithwuo2ute] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-ithwuo2ute] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-ithwuo2ute] {
        display: none;
    }

    .top-row.auth[b-ithwuo2ute] {
        justify-content: space-between;
    }

    .top-row a[b-ithwuo2ute], .top-row .btn-link[b-ithwuo2ute] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ithwuo2ute] {
        flex-direction: row;
    }

    .sidebar[b-ithwuo2ute] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ithwuo2ute] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-ithwuo2ute], article[b-ithwuo2ute] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-00jk842ywa] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-00jk842ywa] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-00jk842ywa] {
    font-size: 1.1rem;
}

.oi[b-00jk842ywa] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-00jk842ywa] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-00jk842ywa] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-00jk842ywa] {
        padding-bottom: 1rem;
    }

    .nav-item[b-00jk842ywa]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-00jk842ywa]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-00jk842ywa]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-00jk842ywa] {
        display: none;
    }

    .collapse[b-00jk842ywa] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
