/* _content/NeoBiz/Components/Dialogs/AddWidgetModal.razor.rz.scp.css */
/* Backdrop */
.add-widget-backdrop[b-oqxk9q07hf] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    animation: fadeInBackdrop-b-oqxk9q07hf 0.2s ease-out;
}

@keyframes fadeInBackdrop-b-oqxk9q07hf {
    from {
        background: rgba(0, 0, 0, 0);
    }
    to {
        background: rgba(0, 0, 0, 0.4);
    }
}

/* Modal */
.add-widget-modal[b-oqxk9q07hf] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    animation: slideUpModal-b-oqxk9q07hf 0.3s ease-out;
}

@keyframes slideUpModal-b-oqxk9q07hf {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Header */
.add-widget-header[b-oqxk9q07hf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.add-widget-title[b-oqxk9q07hf] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.add-widget-title i[b-oqxk9q07hf] {
    font-size: 24px;
    color: #38A049;
}

.add-widget-title h5[b-oqxk9q07hf] {
    margin: 0;
    font-weight: 600;
    color: #1f2937;
}

.btn-close-modal[b-oqxk9q07hf] {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 20px;
    padding: 4px 8px;
    transition: color 0.2s;
}

.btn-close-modal:hover[b-oqxk9q07hf] {
    color: #6b7280;
}

/* Modal Body */
.add-widget-body[b-oqxk9q07hf] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    overflow-y: auto;
}

/* Search Section */
.widget-search-section[b-oqxk9q07hf] {
    display: flex;
    gap: 8px;
}

.search-wrapper[b-oqxk9q07hf] {
    position: relative;
    flex: 1;
}

.search-wrapper i[b-oqxk9q07hf] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.widget-search-input[b-oqxk9q07hf] {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.widget-search-input:focus[b-oqxk9q07hf] {
    outline: none;
    border-color: #38A049;
    box-shadow: 0 0 0 3px rgba(56, 160, 73, 0.1);
}

.btn-search-clear[b-oqxk9q07hf] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 16px;
    padding: 4px 8px;
}

.btn-search-clear:hover[b-oqxk9q07hf] {
    color: #6b7280;
}

/* Categories */
.widget-categories[b-oqxk9q07hf] {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.widget-categories[b-oqxk9q07hf]::-webkit-scrollbar {
    height: 4px;
}

.widget-categories[b-oqxk9q07hf]::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.category-tab[b-oqxk9q07hf] {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #6c757d;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

.category-tab:hover[b-oqxk9q07hf] {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.category-tab.active[b-oqxk9q07hf] {
    background: #38A049;
    border-color: #38A049;
    color: white;
}

/* Widgets Grid */
.available-widgets[b-oqxk9q07hf] {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    overflow-y: auto;
    padding-right: 4px;
}

.available-widgets[b-oqxk9q07hf]::-webkit-scrollbar {
    width: 6px;
}

.available-widgets[b-oqxk9q07hf]::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.available-widgets[b-oqxk9q07hf]::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.available-widgets[b-oqxk9q07hf]::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Widget Card */
.widget-card[b-oqxk9q07hf] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.widget-card:hover[b-oqxk9q07hf] {
    border-color: #38A049;
    background: #f0f9f7;
    box-shadow: 0 4px 12px rgba(56, 160, 73, 0.15);
}

.widget-card.selected[b-oqxk9q07hf] {
    border-color: #38A049;
    background: #f0f9f7;
    box-shadow: 0 4px 12px rgba(56, 160, 73, 0.2);
}

.widget-selector[b-oqxk9q07hf] {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
}

.widget-selector input[type="checkbox"][b-oqxk9q07hf] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #38A049;
}

.widget-icon-section[b-oqxk9q07hf] {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-icon[b-oqxk9q07hf] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #38A049 0%, #28802c 100%);
    border-radius: 8px;
    color: white;
    font-size: 20px;
}

.widget-info[b-oqxk9q07hf] {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.widget-name[b-oqxk9q07hf] {
    margin: 0;
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget-description[b-oqxk9q07hf] {
    margin: 0;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.widget-badge-section[b-oqxk9q07hf] {
    display: flex;
    gap: 6px;
}

.widget-badge[b-oqxk9q07hf] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
}

.widget-action[b-oqxk9q07hf] {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    color: #d1d5db;
    font-size: 20px;
    transition: color 0.2s;
}

.widget-card:hover .widget-action[b-oqxk9q07hf] {
    color: #38A049;
}

.widget-card.selected .widget-action[b-oqxk9q07hf] {
    color: #38A049;
}

/* No Widgets Message */
.no-widgets-message[b-oqxk9q07hf] {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    text-align: center;
    color: #9ca3af;
}

.no-widgets-message i[b-oqxk9q07hf] {
    font-size: 48px;
    opacity: 0.3;
}

.no-widgets-message p[b-oqxk9q07hf] {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.no-widgets-message small[b-oqxk9q07hf] {
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

/* Modal Footer */
.add-widget-footer[b-oqxk9q07hf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.footer-info[b-oqxk9q07hf] {
    color: #9ca3af;
    font-size: 12px;
}

.footer-actions[b-oqxk9q07hf] {
    display: flex;
    gap: 8px;
}

.btn-cancel-modal[b-oqxk9q07hf],
.btn-add-widgets[b-oqxk9q07hf] {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-cancel-modal[b-oqxk9q07hf] {
    background: #f3f4f6;
    color: #6b7280;
}

.btn-cancel-modal:hover[b-oqxk9q07hf] {
    background: #e5e7eb;
}

.btn-add-widgets[b-oqxk9q07hf] {
    background: #38A049;
    color: white;
}

.btn-add-widgets:hover:not(:disabled)[b-oqxk9q07hf] {
    background: #2f8240;
    box-shadow: 0 4px 12px rgba(56, 160, 73, 0.2);
}

.btn-add-widgets:disabled[b-oqxk9q07hf],
.btn-add-widgets.disabled[b-oqxk9q07hf] {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Badge Colors */
.widget-badge.kpi[b-oqxk9q07hf] {
    background: rgba(56, 160, 73, 0.1);
    color: #38A049;
}

.widget-badge.table[b-oqxk9q07hf] {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.widget-badge.chart[b-oqxk9q07hf] {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.widget-badge.quicklinks[b-oqxk9q07hf] {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

@media (max-width: 768px) {
    .add-widget-modal[b-oqxk9q07hf] {
        width: 95%;
        max-height: 90vh;
    }

    .available-widgets[b-oqxk9q07hf] {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .widget-card[b-oqxk9q07hf] {
        grid-template-columns: auto 1fr;
    }

    .widget-icon-section[b-oqxk9q07hf] {
        grid-row: 1;
    }

    .widget-info[b-oqxk9q07hf] {
        grid-column: 2;
        grid-row: 1;
    }

    .widget-action[b-oqxk9q07hf] {
        display: none;
    }
}
/* _content/NeoBiz/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-0j9dw35b5x] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-0j9dw35b5x] {
    flex: 1;
}

.sidebar[b-0j9dw35b5x] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-0j9dw35b5x] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-0j9dw35b5x]  a, .top-row[b-0j9dw35b5x]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-0j9dw35b5x]  a:hover, .top-row[b-0j9dw35b5x]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-0j9dw35b5x]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-0j9dw35b5x] {
        justify-content: space-between;
    }

    .top-row[b-0j9dw35b5x]  a, .top-row[b-0j9dw35b5x]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-0j9dw35b5x] {
        flex-direction: row;
    }

    .sidebar[b-0j9dw35b5x] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-0j9dw35b5x] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-0j9dw35b5x]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

/*    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }*/
}

#blazor-error-ui[b-0j9dw35b5x] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-0j9dw35b5x] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/NeoBiz/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-w0akfu2l0w] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-w0akfu2l0w] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-w0akfu2l0w] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-w0akfu2l0w] {
    font-size: 1.1rem;
}

.bi[b-w0akfu2l0w] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-w0akfu2l0w] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-w0akfu2l0w] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-w0akfu2l0w] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-w0akfu2l0w] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-w0akfu2l0w] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-w0akfu2l0w] {
        padding-bottom: 1rem;
    }

    .nav-item[b-w0akfu2l0w]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-w0akfu2l0w]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-w0akfu2l0w]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-w0akfu2l0w] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-w0akfu2l0w] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-w0akfu2l0w] {
        display: none;
    }

    .nav-scrollable[b-w0akfu2l0w] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/NeoBiz/Components/Pages/Dashboard.razor.rz.scp.css */
/* Dashboard Container */
.dashboard-container[b-t8j7lo6fas] {
    padding: 1.5rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Dashboard Header */
.dashboard-header[b-t8j7lo6fas] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-title[b-t8j7lo6fas] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-header-actions[b-t8j7lo6fas] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Scale Selector */
.scale-selector[b-t8j7lo6fas] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scale-label[b-t8j7lo6fas] {
    font-size: 0.9rem;
  font-weight: 600;
    color: #495057;
    margin: 0;
}

.scale-select[b-t8j7lo6fas] {
    padding: 0.5rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
font-size: 0.9rem;
    font-weight: 500;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scale-select:focus[b-t8j7lo6fas] {
    outline: none;
    border-color: #38A049;
    box-shadow: 0 0 0 3px rgba(56, 160, 73, 0.1);
}

.scale-select:hover[b-t8j7lo6fas] {
    border-color: #38A049;
}

/* Dashboard Section */
.dashboard-section[b-t8j7lo6fas] {
    margin-bottom: 3rem;
}

.section-header[b-t8j7lo6fas] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.section-title[b-t8j7lo6fas] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
  margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-actions[b-t8j7lo6fas] {
    display: flex;
    gap: 0.75rem;
}

/* Widget Grid - Variable Column Spans */
.widget-grid[b-t8j7lo6fas] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: minmax(250px, auto);
    align-items: stretch;
}

/* Overview grid - 4 column layout */
.overview-grid[b-t8j7lo6fas] {
    grid-template-columns: repeat(4, 1fr);
}

/* Analytics grid - 4 column layout */
.analytics-grid[b-t8j7lo6fas] {
    grid-template-columns: repeat(4, 1fr);
}

/* Widget Column Spans */
.widget-span-1[b-t8j7lo6fas] {
    grid-column: span 1;
}

.widget-span-2[b-t8j7lo6fas] {
    grid-column: span 2;
}

.widget-span-3[b-t8j7lo6fas] {
    grid-column: span 3;
}

.widget-span-4[b-t8j7lo6fas] {
    grid-column: span 4;
}

/* Widget Card - Consistent Heights */
.widget-card[b-t8j7lo6fas] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

.widget-card:hover[b-t8j7lo6fas] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
transform: translateY(-2px);
}

/* Quick Link specific sizing */
.widget-card.widget-span-1[b-t8j7lo6fas] {
    min-height: 150px;
    max-height: 200px;
}

/* Widget Content - Full Height */
.widget-content[b-t8j7lo6fas] {
    flex: 1;
  display: flex;
    flex-direction: column;
  height: 100%;
    padding: 0;
}

/* Widget Remove Button */
.widget-remove-btn[b-t8j7lo6fas] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
 height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);  /* More opaque background */
    color: #dc3545;  /* Red color */
    border: 1px solid #dee2e6;
 display: flex;
    align-items: center;
 justify-content: center;
    cursor: pointer;
    opacity: 0;
  transition: all 0.3s ease;
    z-index: 30;  /* Higher than filter button (which is z-index: 10) */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.widget-card:hover .widget-remove-btn[b-t8j7lo6fas] {
    opacity: 1;
}

.widget-remove-btn:hover[b-t8j7lo6fas] {
    background: #dc3545;  /* Solid red on hover */
    color: white;
    transform: scale(1.1);
    border-color: #dc3545;
}

/* Empty State */
.empty-state-box[b-t8j7lo6fas] {
    background: white;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
 flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty-state-box:hover[b-t8j7lo6fas] {
    border-color: #38A049;
    background: rgba(56, 160, 73, 0.02);
    transform: scale(1.01);
}

.empty-state-icon[b-t8j7lo6fas] {
    font-size: 3rem;
    color: #38A049;
    margin-bottom: 1rem;
}

.empty-state-title[b-t8j7lo6fas] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.empty-state-subtitle[b-t8j7lo6fas] {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Buttons */
.btn-primary-custom[b-t8j7lo6fas] {
    background: linear-gradient(135deg, #38A049 0%, #2d7d3a 100%);
    color: white;
 border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover[b-t8j7lo6fas] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 160, 73, 0.3);
}

.btn-filter[b-t8j7lo6fas] {
    background: white;
    color: #495057;
    border: 2px solid #dee2e6;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
 font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-filter:hover[b-t8j7lo6fas] {
border-color: #38A049;
    color: #38A049;
}

.btn-cancel[b-t8j7lo6fas] {
    background: white;
    color: #6c757d;
    border: 2px solid #dee2e6;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover[b-t8j7lo6fas] {
    border-color: #6c757d;
  color: #495057;
}

/* Loading Spinner */
.loading-spinner[b-t8j7lo6fas] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.spinner[b-t8j7lo6fas] {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #38A049;
    border-radius: 50%;
    animation: spin-b-t8j7lo6fas 1s linear infinite;
}

@keyframes spin-b-t8j7lo6fas {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal Styles */
.modal-backdrop[b-t8j7lo6fas] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn-b-t8j7lo6fas 0.3s ease;
}

@keyframes fadeIn-b-t8j7lo6fas {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-dialog-custom[b-t8j7lo6fas] {
    background: white;
    border-radius: 16px;
    width: 90%;
  max-width: 900px;
 max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-t8j7lo6fas 0.3s ease;
}

@keyframes slideUp-b-t8j7lo6fas {
    from {
        transform: translateY(50px);
     opacity: 0;
    }
    to {
     transform: translateY(0);
        opacity: 1;
    }
}

.modal-header-custom[b-t8j7lo6fas] {
    padding: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title-custom[b-t8j7lo6fas] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close-btn[b-t8j7lo6fas] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal-close-btn:hover[b-t8j7lo6fas] {
    background: #f8f9fa;
    color: #1a1a1a;
}

.modal-body-custom[b-t8j7lo6fas] {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-footer-custom[b-t8j7lo6fas] {
  padding: 1.5rem;
 border-top: 2px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Search Bar */
.search-bar[b-t8j7lo6fas] {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-icon[b-t8j7lo6fas] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
color: #6c757d;
    font-size: 1rem;
}

.search-input[b-t8j7lo6fas] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus[b-t8j7lo6fas] {
    outline: none;
    border-color: #38A049;
    box-shadow: 0 0 0 3px rgba(56, 160, 73, 0.1);
}

/* Filter Tabs */
.filter-tabs[b-t8j7lo6fas] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
 overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-tab[b-t8j7lo6fas] {
    background: white;
    border: 2px solid #dee2e6;
    padding: 0.625rem 1rem;
    border-radius: 8px;
font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.filter-tab:hover[b-t8j7lo6fas] {
    border-color: #38A049;
    background: rgba(56, 160, 73, 0.05);
}

.filter-tab.active[b-t8j7lo6fas] {
    background: linear-gradient(135deg, #38A049 0%, #2d7d3a 100%);
    color: white;
    border-color: #38A049;
}

.tab-count[b-t8j7lo6fas] {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

.filter-tab.active .tab-count[b-t8j7lo6fas] {
    background: rgba(255, 255, 255, 0.2);
}

/* Available Widgets Grid */
.available-widgets-grid[b-t8j7lo6fas] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.available-widget-card[b-t8j7lo6fas] {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 1.25rem;
  text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.available-widget-card:hover[b-t8j7lo6fas] {
    border-color: #38A049;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(56, 160, 73, 0.15);
}

.available-widget-card.selected[b-t8j7lo6fas] {
    border-color: #38A049;
    background: rgba(56, 160, 73, 0.05);
    box-shadow: 0 0 0 3px rgba(56, 160, 73, 0.1);
}

.available-widget-icon[b-t8j7lo6fas] {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #38A049 0%, #2d7d3a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.available-widget-name[b-t8j7lo6fas] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.available-widget-desc[b-t8j7lo6fas] {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.available-widget-badge[b-t8j7lo6fas] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Badge styles for widget types */
.badge-kpi[b-t8j7lo6fas] {
    background-color: #38A049;
    color: white;
}

.badge-table[b-t8j7lo6fas] {
    background-color: #ffc107;
    color: #000;
}

.badge-chart[b-t8j7lo6fas] {
    background-color: #17a2b8;
    color: white;
}

.badge-quicklinks[b-t8j7lo6fas] {
    background-color: #6c757d;
    color: white;
}

.badge-sales-overview[b-t8j7lo6fas] {
    background: linear-gradient(135deg, #38A049 0%, #2d7d3a 100%);
    color: white;
}

.badge-finance-summary[b-t8j7lo6fas] {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.badge-inventory-status[b-t8j7lo6fas] {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
}

/* Responsive Grid Adjustments */
@media (max-width: 1400px) {
    .overview-grid[b-t8j7lo6fas],
    .analytics-grid[b-t8j7lo6fas] {
        grid-template-columns: repeat(3, 1fr);
    }

    .widget-span-4[b-t8j7lo6fas] {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .overview-grid[b-t8j7lo6fas],
    .analytics-grid[b-t8j7lo6fas] {
      grid-template-columns: repeat(2, 1fr);
 }

    .widget-span-3[b-t8j7lo6fas],
    .widget-span-4[b-t8j7lo6fas] {
        grid-column: span 2;
    }

    .available-widgets-grid[b-t8j7lo6fas] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
 .dashboard-container[b-t8j7lo6fas] {
        padding: 1rem;
    }

    .overview-grid[b-t8j7lo6fas],
    .analytics-grid[b-t8j7lo6fas] {
        grid-template-columns: 1fr;
        gap: 1rem;
}

    .widget-span-1[b-t8j7lo6fas],
    .widget-span-2[b-t8j7lo6fas],
    .widget-span-3[b-t8j7lo6fas],
    .widget-span-4[b-t8j7lo6fas] {
        grid-column: span 1;
    }

    .dashboard-header[b-t8j7lo6fas] {
        flex-direction: column;
  align-items: flex-start;
    }

    .dashboard-header-actions[b-t8j7lo6fas] {
      width: 100%;
    flex-direction: column;
    }

    .scale-selector[b-t8j7lo6fas] {
        width: 100%;
        justify-content: space-between;
    }

    .scale-select[b-t8j7lo6fas] {
      flex: 1;
    }

    .section-header[b-t8j7lo6fas] {
   flex-direction: column;
        align-items: flex-start;
    gap: 1rem;
    }

    .section-actions[b-t8j7lo6fas] {
   width: 100%;
    }

    .filter-tabs[b-t8j7lo6fas] {
        flex-wrap: wrap;
    }

    .available-widgets-grid[b-t8j7lo6fas] {
        grid-template-columns: 1fr;
    }

    .modal-dialog-custom[b-t8j7lo6fas] {
        width: 95%;
        max-height: 90vh;
    }
}
/* _content/NeoBiz/Components/Pages/Petrol/PetrolSales.razor.rz.scp.css */
/* ============================================================
   PETROLSTATION POS � Modern Design System
   Uses CSS Custom Properties, Flexbox, Grid, Bootstrap 5 compat

   NOTE: This is a Blazor CSS-isolated file (.razor.css).
   - Do NOT use ::deep without a preceding scoped selector.
   - Use plain @keyframes (not @@keyframes � that's only for inline <style> in .razor).
   - :root does not work in scoped CSS; custom properties are defined
     on the component's host elements instead.
   ============================================================ */

/* 
   Custom properties scoped to this component's elements.
   We use a broad selector that matches elements rendered by this component.
*/
.ps-topbar[b-0ftelme2j8],
.ps-sidebar[b-0ftelme2j8],
.ps-main[b-0ftelme2j8],
.ps-modal-backdrop[b-0ftelme2j8],
.ps-toast[b-0ftelme2j8],
.ps-bottom-nav[b-0ftelme2j8] {
    --ps-primary: #005e26;
    --ps-primary-container: #007a33;
    --ps-primary-light: #93f9a2;
    --ps-on-primary: #ffffff;
    --ps-bg: #f6fbf1;
    --ps-surface: #ffffff;
    --ps-surface-dim: #f0f5eb;
    --ps-surface-container: #eaf0e6;
    --ps-surface-high: #e4eae0;
    --ps-surface-highest: #dfe4da;
    --ps-on-surface: #171d17;
    --ps-secondary: #506169;
    --ps-outline: #6f7a6d;
    --ps-outline-variant: #becabb;
    --ps-error: #ba1a1a;
    --ps-error-container: #ffdad6;
    --ps-tertiary: #912c46;
    --ps-radius-sm: 8px;
    --ps-radius-md: 12px;
    --ps-radius-lg: 16px;
    --ps-radius-xl: 20px;
    --ps-shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --ps-shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --ps-shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --ps-topbar-h: 64px;
    --ps-sidebar-w: 240px;
    --ps-font-headline: 'Lexend', sans-serif;
    --ps-font-body: 'Inter', sans-serif;
}

/* reset helpers */
.material-symbols-outlined[b-0ftelme2j8] { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; vertical-align: middle; }

/* ===== TOP APP BAR ===== */
.ps-topbar[b-0ftelme2j8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--ps-topbar-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background: var(--ps-bg);
    z-index: 50;
    box-shadow: 0 1px 0 var(--ps-outline-variant);
}

.ps-topbar-left[b-0ftelme2j8] { display: flex; align-items: center; gap: 32px; }
.ps-brand[b-0ftelme2j8] {
    font-family: var(--ps-font-headline);
    font-size: 18px;
    font-weight: 900;
    color: var(--ps-primary);
    letter-spacing: -0.02em;
    cursor: pointer;
    user-select: none;
}

.ps-topbar-nav[b-0ftelme2j8] { display: flex; gap: 24px; align-items: center; }
.ps-nav-link[b-0ftelme2j8] {
    font-family: var(--ps-font-headline);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    font-weight: 700;
    color: var(--ps-secondary);
    cursor: pointer;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all .2s;
    text-decoration: none;
}
.ps-nav-link.active[b-0ftelme2j8] {
    color: var(--ps-primary);
    border-bottom-color: var(--ps-primary);
}
.ps-nav-link:hover[b-0ftelme2j8] { color: var(--ps-primary); }

.ps-topbar-right[b-0ftelme2j8] { display: flex; align-items: center; gap: 12px; }
.ps-icon-btn[b-0ftelme2j8] {
    width: 40px; height: 40px; border-radius: 50%; border: none;
    background: transparent; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
    color: var(--ps-secondary);
}
.ps-icon-btn:hover[b-0ftelme2j8] { background: var(--ps-surface-container); }

.ps-avatar-sm[b-0ftelme2j8] {
    width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
    border: 2px solid var(--ps-primary-container);
    display: flex; align-items: center; justify-content: center;
    background: var(--ps-surface-container); color: var(--ps-primary);
}

/* ===== SIDEBAR ===== */
.ps-sidebar[b-0ftelme2j8] {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--ps-sidebar-w);
    background: var(--ps-surface-dim);
    padding-top: calc(var(--ps-topbar-h) + 16px);
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    z-index: 40;
    overflow-y: auto;
}

.ps-sidebar-station[b-0ftelme2j8] {
    display: flex; align-items: center; gap: 12px;
    padding: 0 20px; margin-bottom: 24px;
}
.ps-station-icon[b-0ftelme2j8] {
    width: 40px; height: 40px; border-radius: var(--ps-radius-md);
    background: var(--ps-primary-container); color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.ps-station-name[b-0ftelme2j8] { font-weight: 700; font-size: 16px; color: var(--ps-on-surface); margin: 0; }
.ps-station-shift[b-0ftelme2j8] { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ps-secondary); margin: 0; }

.ps-sidebar-nav[b-0ftelme2j8] { flex: 1; display: flex; flex-direction: column; gap: 2px; }

.ps-sidebar-link[b-0ftelme2j8] {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; margin: 0 8px;
    border-radius: var(--ps-radius-md); color: var(--ps-secondary);
    font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s;
    text-decoration: none; border: none; background: transparent; width: calc(100% - 16px);
}
.ps-sidebar-link:hover[b-0ftelme2j8] { background: var(--ps-surface-high); }
.ps-sidebar-link.active[b-0ftelme2j8] {
    background: var(--ps-primary); color: #fff;
    box-shadow: var(--ps-shadow-sm);
}

.ps-sidebar-bottom[b-0ftelme2j8] { border-top: 1px solid var(--ps-outline-variant); padding-top: 12px; margin-top: auto; display: flex; flex-direction: column; gap: 2px; }

.ps-new-txn-btn[b-0ftelme2j8] {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin: 0 12px 12px; padding: 14px; border-radius: var(--ps-radius-md);
    background: var(--ps-primary); color: #fff; border: none;
    font-weight: 700; font-size: 14px; cursor: pointer; box-shadow: var(--ps-shadow-md);
    transition: opacity .2s;
}
.ps-new-txn-btn:hover[b-0ftelme2j8] { opacity: .9; }

/* ===== MAIN CONTENT ===== */
.ps-main[b-0ftelme2j8] {
    margin-left: var(--ps-sidebar-w);
    padding-top: var(--ps-topbar-h);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ps-bg);
}

.ps-grid[b-0ftelme2j8] {
    flex: 1;
    display: grid;
    grid-template-columns: 3fr 5fr 4fr;
    gap: 0;
    padding: 16px;
    overflow: hidden;
    height: calc(100vh - var(--ps-topbar-h));
}

/* Columns */
.ps-col[b-0ftelme2j8] { display: flex; flex-direction: column; overflow: hidden; }

.ps-col-customer[b-0ftelme2j8] {
    padding-right: 16px;
    border-right: 1px solid var(--ps-outline-variant);
    gap: 12px;
}

.ps-col-center[b-0ftelme2j8] {
    padding: 0 24px;
    gap: 16px;
    overflow-y: auto;
}

.ps-col-cart[b-0ftelme2j8] {
    background: var(--ps-surface-dim);
    border-radius: var(--ps-radius-xl);
    box-shadow: var(--ps-shadow-lg);
    overflow: hidden;
}

/* ===== SECTION LABELS ===== */
.ps-section-label[b-0ftelme2j8] {
    font-family: var(--ps-font-headline);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ps-secondary);
    margin: 0 0 12px;
}
.ps-section-label-sm[b-0ftelme2j8] {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ps-secondary);
    margin: 0;
}

/* ===== CUSTOMER IDENTITY (Col 1) ===== */
.ps-customer-identity[b-0ftelme2j8] {
    background: var(--ps-surface-dim);
    border-radius: var(--ps-radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ps-search-box[b-0ftelme2j8] {
    position: relative;
}
.ps-search-icon[b-0ftelme2j8] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ps-outline);
    font-size: 20px;
}
.ps-search-input[b-0ftelme2j8] {
    width: 100%;
    border: none;
    border-radius: var(--ps-radius-md);
    padding: 12px 16px 12px 42px;
    font-size: 14px;
    background: var(--ps-surface);
    box-shadow: var(--ps-shadow-sm);
    outline: none;
    transition: box-shadow .2s;
}
.ps-search-input:focus[b-0ftelme2j8] { box-shadow: 0 0 0 2px var(--ps-primary); }

.ps-walkin-toggle[b-0ftelme2j8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--ps-surface-high);
    padding: 12px 14px;
    border-radius: var(--ps-radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-on-surface);
    cursor: pointer;
}

.ps-toggle[b-0ftelme2j8] {
    width: 44px; height: 24px;
    border-radius: 12px; background: #ccc;
    position: relative; transition: background .2s; cursor: pointer;
}
.ps-toggle.on[b-0ftelme2j8] { background: var(--ps-primary); }
.ps-toggle-thumb[b-0ftelme2j8] {
    width: 18px; height: 18px; border-radius: 50%; background: #fff;
    position: absolute; top: 3px; left: 3px; transition: left .2s;
}
.ps-toggle.on .ps-toggle-thumb[b-0ftelme2j8] { left: 23px; }

.ps-frequent-section[b-0ftelme2j8] { flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 8px; }

.ps-customer-list[b-0ftelme2j8] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ps-customer-list[b-0ftelme2j8]::-webkit-scrollbar { display: none; }

.ps-customer-card[b-0ftelme2j8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--ps-surface);
    border-radius: var(--ps-radius-md);
    border: none;
    cursor: pointer;
    transition: background .15s;
    text-align: left;
    width: 100%;
    box-shadow: var(--ps-shadow-sm);
}
.ps-customer-card:hover[b-0ftelme2j8] { background: var(--ps-surface-high); }
.ps-customer-card.active[b-0ftelme2j8] { background: var(--ps-primary-light); }

.ps-customer-card-left[b-0ftelme2j8] { display: flex; align-items: center; gap: 12px; }

.ps-avatar[b-0ftelme2j8] {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; color: #fff;
    flex-shrink: 0;
}
.ps-customer-name[b-0ftelme2j8] { font-weight: 700; font-size: 14px; margin: 0; color: var(--ps-on-surface); }
.ps-customer-plate[b-0ftelme2j8] { font-size: 12px; color: var(--ps-outline); margin: 0; font-family: var(--ps-font-headline); }

.ps-chevron[b-0ftelme2j8] { color: var(--ps-outline); font-size: 20px; }

.ps-empty-hint[b-0ftelme2j8] {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; padding: 24px; color: var(--ps-outline); text-align: center; font-size: 13px;
}

/* ===== FUEL GRADE CARDS (Col 2) ===== */
.ps-fuel-grid[b-0ftelme2j8] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ps-fuel-card[b-0ftelme2j8] {
    position: relative;
    border-radius: var(--ps-radius-xl);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all .2s;
    border: none;
    overflow: hidden;
    background: var(--ps-surface-high);
    color: var(--ps-on-surface);
    box-shadow: var(--ps-shadow-sm);
    min-height: 120px;
}
.ps-fuel-card:hover[b-0ftelme2j8] { box-shadow: var(--ps-shadow-md); transform: translateY(-2px); }
.ps-fuel-card:active[b-0ftelme2j8] { transform: scale(.97); }

.ps-fuel-card.selected[b-0ftelme2j8] {
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-primary-container));
    color: #fff;
    box-shadow: var(--ps-shadow-lg);
}
.ps-fuel-card.selected .ps-fuel-name[b-0ftelme2j8],
.ps-fuel-card.selected .ps-fuel-unit[b-0ftelme2j8] { color: rgba(255,255,255,.8); }
.ps-fuel-card.selected .ps-fuel-price[b-0ftelme2j8] { color: #fff; }

.ps-fuel-name[b-0ftelme2j8] {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ps-secondary);
}
.ps-fuel-price[b-0ftelme2j8] {
    font-family: var(--ps-font-headline);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
}
.ps-fuel-unit[b-0ftelme2j8] {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ps-outline);
}
.ps-fuel-bg-icon[b-0ftelme2j8] {
    position: absolute;
    right: -12px;
    bottom: -12px;
    font-size: 80px;
    opacity: .08;
}

/* ===== DISPENSER ROW ===== */
.ps-dispenser-row[b-0ftelme2j8] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.ps-dispenser-chip[b-0ftelme2j8] {
    display: flex; align-items: center; gap: 4px;
    padding: 8px 14px; border-radius: 20px;
    border: 1.5px solid var(--ps-outline-variant); background: var(--ps-surface);
    font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s;
    color: var(--ps-on-surface);
}
.ps-dispenser-chip:hover[b-0ftelme2j8] { border-color: var(--ps-primary); background: var(--ps-surface-dim); }
.ps-dispenser-chip.active[b-0ftelme2j8] {
    border-color: var(--ps-primary); background: var(--ps-primary);
    color: #fff;
}

/* ===== KEYPAD SECTION ===== */
.ps-keypad-section[b-0ftelme2j8] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--ps-surface-container);
    border-radius: var(--ps-radius-xl);
    padding: 20px;
    gap: 16px;
    box-shadow: inset 0 1px 4px rgba(0,0,0,.04);
}

.ps-mode-switch[b-0ftelme2j8] { display: flex; gap: 12px; }
.ps-mode-btn[b-0ftelme2j8] {
    flex: 1; padding: 12px; border-radius: var(--ps-radius-md);
    border: none; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; font-size: 12px; cursor: pointer;
    transition: all .2s;
    background: var(--ps-surface); color: var(--ps-on-surface);
    box-shadow: var(--ps-shadow-sm);
}
.ps-mode-btn.active[b-0ftelme2j8] {
    background: var(--ps-primary); color: #fff;
}

.ps-display[b-0ftelme2j8] {
    background: var(--ps-surface);
    border-radius: var(--ps-radius-md);
    padding: 20px 24px;
    border: 2px solid rgba(0,94,38,.1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: var(--ps-shadow-md);
    position: relative;
    overflow: hidden;
}
.ps-display-label[b-0ftelme2j8] {
    position: absolute;
    left: 20px; top: 12px;
    font-size: 10px; font-weight: 900; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--ps-primary);
}
.ps-display-value[b-0ftelme2j8] { display: flex; align-items: baseline; gap: 8px; }
.ps-display-prefix[b-0ftelme2j8] { font-size: 20px; font-weight: 700; color: var(--ps-outline); }
.ps-display-number[b-0ftelme2j8] {
    font-family: var(--ps-font-headline);
    font-size: 48px;
    font-weight: 900;
    color: var(--ps-on-surface);
    letter-spacing: -0.03em;
}
.ps-display-sub[b-0ftelme2j8] { font-size: 12px; color: var(--ps-outline); margin-top: 4px; }

.ps-keypad[b-0ftelme2j8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex: 1;
}
.ps-key[b-0ftelme2j8] {
    background: var(--ps-surface);
    border: none;
    border-bottom: 4px solid var(--ps-surface-highest);
    border-radius: var(--ps-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ps-font-headline);
    font-size: 26px;
    font-weight: 900;
    cursor: pointer;
    transition: all .1s;
    min-height: 56px;
    color: var(--ps-on-surface);
    box-shadow: var(--ps-shadow-sm);
}
.ps-key:hover[b-0ftelme2j8] { background: var(--ps-primary-light); color: var(--ps-primary); }
.ps-key:active[b-0ftelme2j8] { transform: scale(.92); border-bottom-width: 1px; }

.ps-key-backspace[b-0ftelme2j8] {
    background: var(--ps-error-container);
    color: var(--ps-error);
    border-bottom-color: rgba(186,26,26,.15);
}
.ps-key-backspace:hover[b-0ftelme2j8] { background: var(--ps-error); color: #fff; }

.ps-key-enter[b-0ftelme2j8] {
    background: var(--ps-primary-container);
    color: #fff;
    border-bottom-color: rgba(0,94,38,.3);
    font-family: var(--ps-font-headline);
    font-size: 20px;
}
.ps-key-enter:hover[b-0ftelme2j8] { opacity: .9; }

/* ===== MART VIEW (Col 2 alt) ===== */
.ps-mart-section[b-0ftelme2j8] {
    display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: hidden; padding: 0 4px;
}
.ps-mart-header[b-0ftelme2j8] {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.ps-mart-count[b-0ftelme2j8] {
    background: var(--ps-surface-container); color: var(--ps-secondary);
    padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600;
}
.ps-mart-clear-btn[b-0ftelme2j8] {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    border: 0; background: none; color: var(--ps-secondary); cursor: pointer;
    padding: 2px; border-radius: 50%;
}
.ps-mart-clear-btn:hover[b-0ftelme2j8] { background: var(--ps-surface-container); }

.ps-mart-grid[b-0ftelme2j8] {
    flex: 1; min-height: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-rows: min-content; gap: 10px; align-content: start; overflow-y: auto; padding: 4px 0;
}

/* Mart Card */
.ps-mart-card[b-0ftelme2j8] {
    background: var(--ps-surface); border: 1px solid var(--ps-outline-variant);
    border-radius: var(--ps-radius-md); overflow: hidden;
    display: flex; flex-direction: column; position: relative;
    transition: border-color .2s, box-shadow .2s;
}
.ps-mart-card:hover[b-0ftelme2j8] {
    border-color: var(--ps-primary-container); box-shadow: var(--ps-shadow-sm);
}
.ps-mart-card.selected[b-0ftelme2j8] {
    border-color: var(--ps-primary); box-shadow: 0 0 0 2px rgba(0, 94, 38, .15);
}
.ps-mart-card-body[b-0ftelme2j8] {
    padding: 12px; cursor: pointer; flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
}
.ps-mart-card-icon[b-0ftelme2j8] {
    width: 48px; height: 48px; border-radius: var(--ps-radius-sm);
    background: var(--ps-surface-container); display: flex; align-items: center; justify-content: center;
    margin-bottom: 8px; color: var(--ps-primary-container);
}
.ps-mart-card-info[b-0ftelme2j8] { width: 100%; }
.ps-mart-card-name[b-0ftelme2j8] {
    font-family: var(--ps-font-body); font-size: 13px; font-weight: 600;
    color: var(--ps-on-surface); margin: 0 0 4px; line-height: 1.3;
    overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.ps-mart-card-price[b-0ftelme2j8] {
    font-family: var(--ps-font-headline); font-size: 14px; font-weight: 700;
    color: var(--ps-primary); margin: 0;
}
.ps-mart-card-unit[b-0ftelme2j8] {
    font-size: 11px; color: var(--ps-secondary); margin: 0;
}

.ps-mart-quick-add[b-0ftelme2j8] {
    border: 0; border-top: 1px solid var(--ps-outline-variant);
    background: var(--ps-surface-dim); padding: 6px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--ps-primary-container); transition: background .2s;
}
.ps-mart-quick-add:hover[b-0ftelme2j8] { background: var(--ps-primary-light); color: var(--ps-primary); }

/* Mart Product Detail Panel */
.ps-mart-detail[b-0ftelme2j8] {
    background: var(--ps-surface); border: 1px solid var(--ps-outline-variant);
    border-radius: var(--ps-radius-md); margin-bottom: 12px; overflow: hidden;
    box-shadow: var(--ps-shadow-sm);
}
.ps-mart-detail-header[b-0ftelme2j8] {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px; border-bottom: 1px solid var(--ps-outline-variant);
    background: var(--ps-surface-dim);
}
.ps-mart-detail-name[b-0ftelme2j8] {
    font-family: var(--ps-font-headline); font-size: 16px; font-weight: 700;
    color: var(--ps-on-surface); margin: 0;
}
.ps-mart-detail-close[b-0ftelme2j8] {
    border: 0; background: none; color: var(--ps-secondary);
    cursor: pointer; padding: 4px; border-radius: 50%;
}
.ps-mart-detail-close:hover[b-0ftelme2j8] { background: var(--ps-surface-container); }
.ps-mart-detail-body[b-0ftelme2j8] { padding: 16px; }
.ps-mart-detail-info[b-0ftelme2j8] {
    display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px;
}
.ps-mart-detail-icon[b-0ftelme2j8] {
    width: 64px; height: 64px; border-radius: var(--ps-radius-md);
    background: var(--ps-surface-container); display: flex; align-items: center;
    justify-content: center; color: var(--ps-primary-container); flex-shrink: 0;
}
.ps-mart-detail-meta p[b-0ftelme2j8] { margin: 0 0 4px; font-size: 13px; color: var(--ps-on-surface); }
.ps-mart-detail-meta strong[b-0ftelme2j8] { color: var(--ps-secondary); font-weight: 600; }

.ps-mart-qty-section[b-0ftelme2j8] { margin-bottom: 16px; }
.ps-mart-qty-row[b-0ftelme2j8] {
    display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.ps-mart-qty-btn[b-0ftelme2j8] {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--ps-outline-variant); background: var(--ps-surface);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--ps-primary);
}
.ps-mart-qty-btn:hover:not(:disabled)[b-0ftelme2j8] { background: var(--ps-surface-container); }
.ps-mart-qty-btn:disabled[b-0ftelme2j8] { opacity: .4; cursor: not-allowed; }
.ps-mart-qty-input[b-0ftelme2j8] {
    width: 70px; text-align: center; height: 36px; border: 1px solid var(--ps-outline-variant);
    border-radius: var(--ps-radius-sm); font-size: 16px; font-weight: 700;
    color: var(--ps-on-surface); outline: none;
}
.ps-mart-qty-input:focus[b-0ftelme2j8] { border-color: var(--ps-primary); box-shadow: 0 0 0 2px rgba(0,94,38,.1); }

.ps-mart-total-line[b-0ftelme2j8] {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--ps-outline-variant);
    font-size: 14px; color: var(--ps-secondary);
}
.ps-mart-total-value[b-0ftelme2j8] { font-weight: 800; font-size: 18px; color: var(--ps-primary); }

.ps-mart-add-btn[b-0ftelme2j8] {
    width: 100%; padding: 12px; border: 0; border-radius: var(--ps-radius-sm);
    background: var(--ps-primary); color: #fff; font-family: var(--ps-font-headline);
    font-size: 14px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .2s;
}
.ps-mart-add-btn:hover:not(:disabled)[b-0ftelme2j8] { background: var(--ps-primary-container); }
.ps-mart-add-btn:disabled[b-0ftelme2j8] { opacity: .5; cursor: not-allowed; }

/* ===== CART (Col 3) ===== */
.ps-cart-container[b-0ftelme2j8] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
}

.ps-cart-header[b-0ftelme2j8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.ps-cart-title[b-0ftelme2j8] {
    font-family: var(--ps-font-headline);
    font-size: 20px;
    font-weight: 900;
    color: var(--ps-on-surface);
    margin: 0;
}
.ps-cart-badge[b-0ftelme2j8] {
    background: var(--ps-primary-container);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.ps-cart-items[b-0ftelme2j8] {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ps-cart-items[b-0ftelme2j8]::-webkit-scrollbar { display: none; }

.ps-cart-row[b-0ftelme2j8] {
    background: var(--ps-surface);
    padding: 14px 16px;
    border-radius: var(--ps-radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--ps-shadow-sm);
}
.ps-cart-row-left[b-0ftelme2j8] { display: flex; align-items: center; gap: 12px; min-width: 0; }

.ps-cart-item-icon[b-0ftelme2j8] {
    width: 44px; height: 44px;
    border-radius: var(--ps-radius-sm);
    background: rgba(0,94,38,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--ps-primary); flex-shrink: 0;
}

.ps-cart-item-name[b-0ftelme2j8] { font-weight: 700; font-size: 14px; margin: 0; color: var(--ps-on-surface); }
.ps-cart-item-meta[b-0ftelme2j8] { font-size: 12px; color: var(--ps-outline); margin: 0; }
.ps-cart-row-right[b-0ftelme2j8] { text-align: right; flex-shrink: 0; }
.ps-cart-item-total[b-0ftelme2j8] {
    font-family: var(--ps-font-headline);
    font-weight: 900;
    font-size: 16px;
    color: var(--ps-primary);
}
.ps-remove-btn[b-0ftelme2j8] {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ps-error);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 0;
}
.ps-remove-btn:hover[b-0ftelme2j8] { text-decoration: underline; }

.ps-cart-empty[b-0ftelme2j8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    color: var(--ps-outline);
    gap: 4px;
    min-height: 160px;
}
.ps-cart-empty p[b-0ftelme2j8] { margin: 0; font-weight: 600; font-size: 14px; }
.ps-cart-empty small[b-0ftelme2j8] { color: var(--ps-outline); }

/* ===== VEHICLE PLATE ===== */
.ps-vehicle-section[b-0ftelme2j8] { margin-bottom: 16px; }
.ps-vehicle-input-wrap[b-0ftelme2j8] { position: relative; }
.ps-vehicle-icon[b-0ftelme2j8] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ps-primary);
}
.ps-vehicle-input[b-0ftelme2j8] {
    width: 100%;
    border: none;
    border-radius: var(--ps-radius-md);
    padding: 14px 16px 14px 46px;
    font-family: var(--ps-font-headline);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--ps-surface);
    outline: none;
    box-shadow: var(--ps-shadow-sm);
    transition: box-shadow .2s;
}
.ps-vehicle-input:focus[b-0ftelme2j8] { box-shadow: 0 0 0 2px var(--ps-primary); }

/* ===== CHECKOUT SUMMARY ===== */
.ps-checkout-summary[b-0ftelme2j8] {
    background: var(--ps-surface-high);
    border-radius: var(--ps-radius-xl);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.ps-summary-row[b-0ftelme2j8] {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--ps-outline);
}
.ps-discount-toggle[b-0ftelme2j8] {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ps-summary-total[b-0ftelme2j8] {
    border-top: 2px solid var(--ps-outline-variant);
    padding-top: 12px;
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.ps-total-label[b-0ftelme2j8] {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ps-secondary);
}
.ps-total-value[b-0ftelme2j8] {
    font-family: var(--ps-font-headline);
    font-size: 32px;
    font-weight: 900;
    color: var(--ps-primary);
    letter-spacing: -0.03em;
}

/* ===== PAYMENT METHODS ===== */
.ps-payment-section[b-0ftelme2j8] { margin-bottom: 16px; }
.ps-payment-grid[b-0ftelme2j8] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 8px;
}
.ps-pay-btn[b-0ftelme2j8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    border-radius: var(--ps-radius-md);
    border: none;
    background: var(--ps-surface);
    color: var(--ps-on-surface);
    cursor: pointer;
    transition: all .2s;
    box-shadow: var(--ps-shadow-sm);
    gap: 2px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}
.ps-pay-btn:hover[b-0ftelme2j8] { background: var(--ps-primary-container); color: #fff; }
.ps-pay-btn.active[b-0ftelme2j8] {
    background: var(--ps-primary);
    color: #fff;
    box-shadow: var(--ps-shadow-md);
}
.ps-pay-btn .material-symbols-outlined[b-0ftelme2j8] { font-size: 22px; margin-bottom: 2px; }

/* ===== COMPLETE TRANSACTION BUTTON ===== */
.ps-complete-btn[b-0ftelme2j8] {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: var(--ps-radius-md);
    background: linear-gradient(135deg, var(--ps-primary), var(--ps-primary-container));
    color: #fff;
    font-family: var(--ps-font-headline);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    box-shadow: var(--ps-shadow-lg);
    transition: all .2s;
    margin-bottom: 12px;
}
.ps-complete-btn:hover:not(:disabled)[b-0ftelme2j8] { filter: brightness(1.1); }
.ps-complete-btn:active:not(:disabled)[b-0ftelme2j8] { transform: scale(.98); }
.ps-complete-btn:disabled[b-0ftelme2j8] { opacity: .5; cursor: not-allowed; }

/* ===== TODAY'S INVOICES ===== */
.ps-invoices-toggle[b-0ftelme2j8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--ps-secondary);
    border-top: 1px solid var(--ps-outline-variant);
}
.ps-invoices-toggle:hover[b-0ftelme2j8] { color: var(--ps-primary); }

.ps-invoices-list[b-0ftelme2j8] { max-height: 160px; overflow-y: auto; }
.ps-invoice-row[b-0ftelme2j8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--ps-surface-high);
    font-size: 12px;
}

/* ===== MODALS ===== */
.ps-modal-backdrop[b-0ftelme2j8] {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,.45);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000;
}
.ps-modal[b-0ftelme2j8] {
    background: var(--ps-surface);
    width: 550px; max-width: 95vw; max-height: 85vh;
    border-radius: var(--ps-radius-lg);
    box-shadow: var(--ps-shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ps-modal-header[b-0ftelme2j8] {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; border-bottom: 1px solid var(--ps-surface-high);
    background: var(--ps-surface-dim);
}
.ps-modal-header h5[b-0ftelme2j8] {
    margin: 0; font-size: 16px; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}
.ps-modal-close[b-0ftelme2j8] {
    width: 36px; height: 36px; border-radius: 50%; border: none;
    background: transparent; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    color: var(--ps-outline); transition: background .2s;
}
.ps-modal-close:hover[b-0ftelme2j8] { background: var(--ps-surface-high); }
.ps-modal-body[b-0ftelme2j8] { padding: 20px; overflow-y: auto; }

.ps-multi-balance[b-0ftelme2j8] {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; border-radius: var(--ps-radius-sm);
    font-size: 13px; margin-bottom: 12px;
}

/* ===== TOAST ===== */
.ps-toast[b-0ftelme2j8] {
    position: fixed;
    bottom: 24px; right: 24px;
    padding: 12px 20px;
    border-radius: var(--ps-radius-md);
    color: #fff; font-size: 14px; font-weight: 600;
    z-index: 9999;
    box-shadow: var(--ps-shadow-lg);
    display: flex; align-items: center; gap: 8px;
    animation: ps-toast-in-b-0ftelme2j8 .3s ease-out;
    max-width: 90vw;
}
.ps-toast.success[b-0ftelme2j8] { background: var(--ps-primary); }
.ps-toast.error[b-0ftelme2j8] { background: var(--ps-error); }

@keyframes ps-toast-in-b-0ftelme2j8 {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE BOTTOM NAV ===== */
.ps-bottom-nav[b-0ftelme2j8] {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--ps-bg);
    justify-content: space-around;
    align-items: center;
    padding: 10px 4px;
    border-top: 1px solid var(--ps-outline-variant);
    z-index: 50;
}
.ps-bottom-link[b-0ftelme2j8] {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    background: none; border: none; cursor: pointer;
    color: var(--ps-secondary); font-size: 10px; font-weight: 700;
    text-transform: uppercase;
}
.ps-bottom-link.active[b-0ftelme2j8] { color: var(--ps-primary); }

/* ===== RESPONSIVE ===== */

/* Hide sidebar on tablet and below */
@media (max-width: 1280px) {
    .ps-sidebar[b-0ftelme2j8] { display: none; }
    .ps-main[b-0ftelme2j8] { margin-left: 0; }
}

/* Tablet: 2-column layout */
@media (max-width: 1024px) {
    .ps-grid[b-0ftelme2j8] {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        overflow-y: auto;
        height: auto;
        min-height: calc(100vh - var(--ps-topbar-h));
    }
    .ps-col-customer[b-0ftelme2j8] {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: 1px solid var(--ps-outline-variant);
        padding: 12px 0;
        max-height: 200px;
        overflow-y: auto;
    }
    .ps-frequent-section[b-0ftelme2j8] { display: none; }
    .ps-col-center[b-0ftelme2j8] { padding: 16px 8px 16px 0; }
    .ps-col-cart[b-0ftelme2j8] { border-radius: var(--ps-radius-lg); }
    .ps-topbar-nav[b-0ftelme2j8] { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
    .ps-topbar-nav[b-0ftelme2j8] { display: none; }

    .ps-grid[b-0ftelme2j8] {
        grid-template-columns: 1fr;
        padding: 8px;
        gap: 12px;
        padding-bottom: 80px;
    }
    .ps-col-customer[b-0ftelme2j8] { display: none; }
    .ps-col-center[b-0ftelme2j8] { padding: 0; }
    .ps-col-cart[b-0ftelme2j8] { border-radius: var(--ps-radius-md); }

    .ps-fuel-grid[b-0ftelme2j8] { grid-template-columns: 1fr 1fr; gap: 8px; }
    .ps-fuel-card[b-0ftelme2j8] { min-height: 90px; padding: 16px 12px; }
    .ps-fuel-price[b-0ftelme2j8] { font-size: 22px; }

    .ps-display-number[b-0ftelme2j8] { font-size: 36px; }
    .ps-key[b-0ftelme2j8] { min-height: 48px; font-size: 22px; }

    .ps-payment-grid[b-0ftelme2j8] { grid-template-columns: repeat(3, 1fr); }
    .ps-total-value[b-0ftelme2j8] { font-size: 24px; }

    .ps-bottom-nav[b-0ftelme2j8] { display: flex; }

    .ps-toast[b-0ftelme2j8] { bottom: 70px; right: 12px; left: 12px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .ps-fuel-card[b-0ftelme2j8] { min-height: 80px; padding: 12px 8px; }
    .ps-fuel-price[b-0ftelme2j8] { font-size: 18px; }
    .ps-keypad-section[b-0ftelme2j8] { padding: 12px; }
    .ps-display-number[b-0ftelme2j8] { font-size: 28px; }
    .ps-complete-btn[b-0ftelme2j8] { font-size: 14px; padding: 14px; }
}
/* _content/NeoBiz/Components/Pages/Register.razor.rz.scp.css */
.invalid-input[b-4m0z0u9sb5] {
    border: 1.5px solid #e53935 !important;
    background: #fff5f5 !important;
}

.validation-text[b-4m0z0u9sb5] {
    color: #e53935;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
    padding-left: 2px;
}
.error-message[b-4m0z0u9sb5] {
    background: #ffeaea;
    color: #c62828;
    border: 1px solid #e57373;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 12px;
    font-size: 14px;
    text-align: left;
}

.resend-otp-btn[b-4m0z0u9sb5] {
    background: none;
    border: none;
    color: #388e3c;
    font-weight: 600;
    cursor: pointer;
    padding: 0 6px;
    font-size: 14px;
    text-decoration: underline;
}
.resend-otp-btn:disabled[b-4m0z0u9sb5] {
    color: #aaa;
    cursor: not-allowed;
    text-decoration: none;
}

.left-panel[b-4m0z0u9sb5] {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    min-height: 100vh;
}

.left-panel img[b-4m0z0u9sb5] {
    width: 80%;
    max-width: 480px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 2px 8px #0001;
    background: #fff;
    display: block;
    margin: 0 auto;
}
/* _content/NeoBiz/Components/Shared/FileUpload.razor.rz.scp.css */
.file-upload-container[b-e5ng08tg8z] {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #e4e7ec;
    border-radius: 0.5rem;
    background: #f9fafb;
}

.file-upload-label[b-e5ng08tg8z] {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #344054;
    margin-bottom: 0.5rem;
}

.file-preview-grid[b-e5ng08tg8z] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.file-preview-item[b-e5ng08tg8z] {
    border: 1px solid #d0d5dd;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
}

.preview-image[b-e5ng08tg8z] {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.file-info[b-e5ng08tg8z] {
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
}

.file-info small[b-e5ng08tg8z] {
    color: #667085;
    font-size: 0.75rem;
    flex: 1;
    margin-right: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-upload-area[b-e5ng08tg8z] {
    margin-top: 1rem;
}

.file-upload-area .form-control[b-e5ng08tg8z] {
    margin-bottom: 0.5rem;
}

.file-upload-area .text-muted[b-e5ng08tg8z] {
    color: #667085;
    font-size: 0.875rem;
}
/* _content/NeoBiz/Components/Widgets/GroupedQuickLinksWidget.razor.rz.scp.css */
/* Grouped Quick Links Widget Styles */

.grouped-quick-links-container[b-kc999qn3v7] {
    padding: 0.75rem 0.5rem;
    overflow-y: auto;
    background: white;
    height: 100%;
}

.grouped-quick-links-container[b-kc999qn3v7]::-webkit-scrollbar {
    width: 6px;
}

.grouped-quick-links-container[b-kc999qn3v7]::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.grouped-quick-links-container[b-kc999qn3v7]::-webkit-scrollbar-thumb {
    background: #38A049;
    border-radius: 3px;
}

.grouped-quick-links-container[b-kc999qn3v7]::-webkit-scrollbar-thumb:hover {
    background: #2d7d3a;
}

/* Groups Container */
.quick-link-groups[b-kc999qn3v7] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Individual Group */
.quick-link-group[b-kc999qn3v7] {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.quick-link-group:hover[b-kc999qn3v7] {
    border-color: #38A049;
    background: #f0f9f7;
    box-shadow: 0 2px 8px rgba(56, 160, 73, 0.1);
}

/* Group Header */
.group-header[b-kc999qn3v7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.group-header:hover[b-kc999qn3v7] {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.group-title[b-kc999qn3v7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.group-icon[b-kc999qn3v7] {
    font-size: 1.1rem;
    color: #ffc107;
}

.item-count[b-kc999qn3v7] {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.toggle-icon[b-kc999qn3v7] {
    font-size: 1rem;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

/* Group Items */
.group-items[b-kc999qn3v7] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    animation: slideDown-b-kc999qn3v7 0.2s ease-out;
}

@keyframes slideDown-b-kc999qn3v7 {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Quick Link Items */
.quick-link-item[b-kc999qn3v7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: white;
    cursor: pointer;
    gap: 0.5rem;
}

.quick-link-item:hover[b-kc999qn3v7] {
    border-color: #38A049;
    background: #f8fff9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 160, 73, 0.15);
}

.quick-link-icon[b-kc999qn3v7] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #38A049 0%, #28802c 100%);
    color: white;
    font-size: 1.2rem;
}

.quick-link-text[b-kc999qn3v7] {
    text-align: center;
    width: 100%;
}

.quick-link-title[b-kc999qn3v7] {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* States */
.loading-state[b-kc999qn3v7],
.empty-state[b-kc999qn3v7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem 1rem;
}

.empty-icon[b-kc999qn3v7] {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grouped-quick-links-container[b-kc999qn3v7] {
        padding: 0.5rem;
    }

    .group-items[b-kc999qn3v7] {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 0.4rem;
        padding: 0.5rem;
    }

    .quick-link-item[b-kc999qn3v7] {
        padding: 0.5rem 0.4rem;
        gap: 0.4rem;
    }

    .quick-link-icon[b-kc999qn3v7] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .quick-link-title[b-kc999qn3v7] {
        font-size: 0.65rem;
    }

    .group-title[b-kc999qn3v7] {
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .item-count[b-kc999qn3v7] {
        font-size: 0.8rem;
    }
}

@media (min-width: 1200px) {
    .group-items[b-kc999qn3v7] {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
}
/* _content/NeoBiz/Components/Widgets/ReportGroupsWidget.razor.rz.scp.css */
/* Report Groups Widget Styles */

.report-groups-widget[b-7hl597pbu5] {
    padding: 0.75rem 0.5rem;
    overflow-y: auto;
    background: white;
    height: 100%;
}

.report-groups-widget[b-7hl597pbu5]::-webkit-scrollbar {
    width: 6px;
}

.report-groups-widget[b-7hl597pbu5]::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.report-groups-widget[b-7hl597pbu5]::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 3px;
}

/* Groups Container */
.report-groups-container[b-7hl597pbu5] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Individual Group */
.report-group[b-7hl597pbu5] {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #f9fafb;
}

.report-group:hover[b-7hl597pbu5] {
    border-color: #dc3545;
    background: #fff5f5;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
}

/* Group Header */
.group-header[b-7hl597pbu5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.group-header:hover[b-7hl597pbu5] {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.group-title[b-7hl597pbu5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.group-icon[b-7hl597pbu5] {
    font-size: 1.1rem;
    color: #dc3545;
}

.report-count[b-7hl597pbu5] {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.toggle-icon[b-7hl597pbu5] {
    font-size: 1rem;
    color: #9ca3af;
}

/* Group Reports */
.group-reports[b-7hl597pbu5] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    max-height: 600px;
    overflow-y: auto;
    animation: slideDown-b-7hl597pbu5 0.2s ease-out;
}

@keyframes slideDown-b-7hl597pbu5 {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 600px;
    }
}

/* Report Item */
.report-item[b-7hl597pbu5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.report-item:hover[b-7hl597pbu5] {
    border-color: #dc3545;
    background: #fff5f5;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
}

.report-icon[b-7hl597pbu5] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.report-info[b-7hl597pbu5] {
    flex: 1;
    min-width: 0;
}

.report-name[b-7hl597pbu5] {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.report-desc[b-7hl597pbu5] {
    font-size: 0.8rem;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.report-actions[b-7hl597pbu5] {
    display: flex;
    gap: 0.25rem;
}

.btn-report-link[b-7hl597pbu5] {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-report-link:hover[b-7hl597pbu5] {
    background: #c82333;
    transform: scale(1.05);
}

/* States */
.loading-state[b-7hl597pbu5],
.empty-state[b-7hl597pbu5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem 1rem;
}

.empty-icon[b-7hl597pbu5] {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .report-groups-widget[b-7hl597pbu5] {
        padding: 0.5rem;
    }

    .group-reports[b-7hl597pbu5] {
        max-height: 400px;
    }

    .report-item[b-7hl597pbu5] {
        padding: 0.6rem;
        gap: 0.5rem;
    }

    .report-icon[b-7hl597pbu5] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .report-name[b-7hl597pbu5] {
        font-size: 0.9rem;
    }

    .group-title[b-7hl597pbu5] {
        font-size: 0.9rem;
    }

    .btn-report-link[b-7hl597pbu5] {
        padding: 3px 6px;
    }
}
