/* /Components/ConfirmDialog.razor.rz.scp.css */
.modal-overlay[b-hy4jonmb2g] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-dialog[b-hy4jonmb2g] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    animation: slideUp-b-hy4jonmb2g 0.3s ease;
}

.confirm-dialog[b-hy4jonmb2g] {
    max-width: 400px;
}

@keyframes slideUp-b-hy4jonmb2g {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-hy4jonmb2g] {
    padding: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.modal-header h3[b-hy4jonmb2g] {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
}

.modal-body[b-hy4jonmb2g] {
    padding: 20px;
    color: #34495e;
    line-height: 1.6;
}

.modal-footer[b-hy4jonmb2g] {
    padding: 15px 20px;
    border-top: 1px solid #ecf0f1;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn[b-hy4jonmb2g] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary[b-hy4jonmb2g] {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover[b-hy4jonmb2g] {
    background: #7f8c8d;
}

.btn-danger[b-hy4jonmb2g] {
    background: #e74c3c;
    color: white;
}

.btn-danger:hover[b-hy4jonmb2g] {
    background: #c0392b;
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
.spinner-overlay[b-9frlzpxp1j] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1500;
    gap: 20px;
}

.spinner[b-9frlzpxp1j] {
    display: flex;
    gap: 8px;
}

.spinner-circle[b-9frlzpxp1j] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3498db;
    animation: bounce-b-9frlzpxp1j 1.4s infinite ease-in-out both;
}

.spinner-circle:nth-child(1)[b-9frlzpxp1j] {
    animation-delay: -0.32s;
}

.spinner-circle:nth-child(2)[b-9frlzpxp1j] {
    animation-delay: -0.16s;
}

.spinner-circle:nth-child(3)[b-9frlzpxp1j] {
    animation-delay: 0s;
}

.spinner-circle:nth-child(4)[b-9frlzpxp1j] {
    animation-delay: 0.16s;
}

@keyframes bounce-b-9frlzpxp1j {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.spinner-message[b-9frlzpxp1j] {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
/* /Components/Pagination.razor.rz.scp.css */
.pagination-wrapper[b-822unpuwqb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination-info[b-822unpuwqb] {
    font-size: 13px;
    color: #7f8c8d;
}

.pagination-info strong[b-822unpuwqb] {
    color: #2c3e50;
    font-weight: 600;
}

.pagination[b-822unpuwqb] {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.pagination-btn[b-822unpuwqb] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.2s ease;
    min-width: 36px;
    text-align: center;
}

.pagination-btn:hover:not(.disabled)[b-822unpuwqb] {
    background: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateY(-1px);
}

.pagination-btn.active[b-822unpuwqb] {
    background: #3498db;
    color: white;
    border-color: #3498db;
    font-weight: 600;
}

.pagination-btn.disabled[b-822unpuwqb] {
    background: #ecf0f1;
    color: #bdc3c7;
    cursor: not-allowed;
    border-color: #ddd;
}

.page-size-selector[b-822unpuwqb] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #34495e;
}

.page-size-selector label[b-822unpuwqb] {
    font-weight: 500;
}

.page-size-selector select[b-822unpuwqb] {
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-size-selector select:hover[b-822unpuwqb] {
    border-color: #3498db;
}

.page-size-selector select:focus[b-822unpuwqb] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 3px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .pagination-wrapper[b-822unpuwqb] {
        flex-direction: column;
        gap: 10px;
    }

    .pagination-info[b-822unpuwqb] {
        width: 100%;
        text-align: center;
    }

    .pagination[b-822unpuwqb] {
        justify-content: center;
        width: 100%;
    }

    .page-size-selector[b-822unpuwqb] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Toast.razor.rz.scp.css */
.toast-container[b-a23afwrgwq] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    max-width: 400px;
}

.toast[b-a23afwrgwq] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    animation: slideInRight-b-a23afwrgwq 0.3s ease;
    overflow: hidden;
    border-left: 4px solid #3498db;
}

.toast.success[b-a23afwrgwq] {
    border-left-color: #27ae60;
}

.toast.success .icon-check[b-a23afwrgwq] {
    color: #27ae60;
}

.toast.error[b-a23afwrgwq] {
    border-left-color: #e74c3c;
}

.toast.error .icon-error[b-a23afwrgwq] {
    color: #e74c3c;
}

.toast.warning[b-a23afwrgwq] {
    border-left-color: #f39c12;
}

.toast.warning .icon-warning[b-a23afwrgwq] {
    color: #f39c12;
}

.toast-header[b-a23afwrgwq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #ecf0f1;
}

.toast-icon[b-a23afwrgwq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-weight: bold;
    font-size: 16px;
}

.toast-title[b-a23afwrgwq] {
    flex: 1;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.toast-close[b-a23afwrgwq] {
    background: none;
    border: none;
    font-size: 20px;
    color: #95a5a6;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover[b-a23afwrgwq] {
    color: #7f8c8d;
}

.toast-body[b-a23afwrgwq] {
    padding: 10px 15px;
    color: #34495e;
    font-size: 13px;
    line-height: 1.4;
}

@keyframes slideInRight-b-a23afwrgwq {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .toast-container[b-a23afwrgwq] {
        max-width: 90vw;
        right: 5%;
        left: auto;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-5383j6hyu8] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-5383j6hyu8] {
    flex: 1;
}

.sidebar[b-5383j6hyu8] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-5383j6hyu8] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-5383j6hyu8]  a, .top-row[b-5383j6hyu8]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-5383j6hyu8]  a:hover, .top-row[b-5383j6hyu8]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-5383j6hyu8]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-5383j6hyu8] {
        justify-content: space-between;
    }

    .top-row[b-5383j6hyu8]  a, .top-row[b-5383j6hyu8]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-5383j6hyu8] {
        flex-direction: row;
    }

    .sidebar[b-5383j6hyu8] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-5383j6hyu8] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-5383j6hyu8]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-5383j6hyu8], article[b-5383j6hyu8] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-da4la3n260] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-da4la3n260] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-da4la3n260] {
    font-size: 1.1rem;
}

.bi[b-da4la3n260] {
    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-da4la3n260] {
    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-da4la3n260] {
    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-da4la3n260] {
    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-da4la3n260] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-da4la3n260] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-da4la3n260] {
        padding-bottom: 1rem;
    }

    .nav-item[b-da4la3n260]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

    .nav-item[b-da4la3n260]  button.nav-link {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        padding: 0;
        cursor: pointer;
    }

    .nav-item[b-da4la3n260]  button.nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

.nav-item[b-da4la3n260]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-da4la3n260]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

/* Submenu styles */
.submenu[b-da4la3n260] {
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255,255,255,0.2);
    margin-left: 0.5rem;
}

.submenu .nav-item[b-da4la3n260] {
    padding-bottom: 0.3rem;
}

.submenu[b-da4la3n260]  a.submenu-link {
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 0.85rem;
}

@media (min-width: 641px) {
    .navbar-toggler[b-da4la3n260] {
        display: none;
    }

    .collapse[b-da4la3n260] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-da4la3n260] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Sales.razor.rz.scp.css */
.sales-entry-container[b-uldcl3wpow] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Title */
.sales-header-title[b-uldcl3wpow] {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sales-header-title h2[b-uldcl3wpow] {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
}

.header-date[b-uldcl3wpow] {
    color: #7f8c8d;
    font-size: 14px;
}

/* Info Section */
.info-section[b-uldcl3wpow] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-title[b-uldcl3wpow] {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.info-grid[b-uldcl3wpow] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-item[b-uldcl3wpow] {
    display: flex;
    flex-direction: column;
    position: relative;
}

.info-item label[b-uldcl3wpow] {
    font-size: 13px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 5px;
}

.info-input[b-uldcl3wpow],
.info-item select[b-uldcl3wpow] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.info-input:focus[b-uldcl3wpow],
.info-item select:focus[b-uldcl3wpow] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    background-color: #f0f8ff;
}

.info-input:disabled[b-uldcl3wpow] {
    background-color: #ecf0f1;
    color: #7f8c8d;
}

.lookup-btn[b-uldcl3wpow] {
    position: absolute;
    right: 10px;
    top: 30px;
    padding: 8px 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.lookup-btn:hover[b-uldcl3wpow] {
    background: #2980b9;
}

/* Item Search Section */
.item-search-section[b-uldcl3wpow] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-controls[b-uldcl3wpow] {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.search-group[b-uldcl3wpow] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 250px;
}

.search-group label[b-uldcl3wpow] {
    font-size: 13px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 5px;
}

.search-input[b-uldcl3wpow] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus[b-uldcl3wpow] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.search-btn[b-uldcl3wpow],
.add-btn[b-uldcl3wpow] {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn[b-uldcl3wpow] {
    background: #27ae60;
    color: white;
}

.search-btn:hover[b-uldcl3wpow] {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.2);
}

.add-btn[b-uldcl3wpow] {
    background: #3498db;
    color: white;
}

.add-btn:hover[b-uldcl3wpow] {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
}

/* Items Table Section */
.items-section[b-uldcl3wpow] {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.items-table-wrapper[b-uldcl3wpow] {
    overflow-x: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.items-table[b-uldcl3wpow] {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.items-table thead[b-uldcl3wpow] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.items-table th[b-uldcl3wpow] {
    padding: 12px;
    text-align: left;
    font-size: 13px;
    white-space: nowrap;
    border-bottom: 2px solid #667eea;
}

.items-table td[b-uldcl3wpow] {
    padding: 12px;
    border-bottom: 1px solid #ecf0f1;
    font-size: 14px;
}

.items-table tbody tr[b-uldcl3wpow] {
    transition: background-color 0.2s ease;
}

.items-table tbody tr:hover[b-uldcl3wpow] {
    background-color: #f8f9fa;
}

.items-table tbody tr:nth-child(even)[b-uldcl3wpow] {
    background-color: #f9fafb;
}

.qty-input[b-uldcl3wpow] {
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 70px;
    text-align: center;
}

.qty-input:focus[b-uldcl3wpow] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 3px rgba(52, 152, 219, 0.3);
}

.delete-btn[b-uldcl3wpow] {
    padding: 6px 10px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s ease;
}

.delete-btn:hover[b-uldcl3wpow] {
    background: #c0392b;
}

/* Summary Section */
.summary-section[b-uldcl3wpow] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.summary-left[b-uldcl3wpow] {
    display: flex;
    flex-direction: column;
}

.summary-left label[b-uldcl3wpow] {
    font-size: 13px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 5px;
}

.narration-input[b-uldcl3wpow] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s ease;
}

.narration-input:focus[b-uldcl3wpow] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.summary-right[b-uldcl3wpow] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.summary-grid[b-uldcl3wpow] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-row[b-uldcl3wpow] {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.summary-row.highlight[b-uldcl3wpow] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    border-left-color: #764ba2;
}

.summary-label[b-uldcl3wpow] {
    font-weight: 600;
    color: #34495e;
}

.summary-row.highlight .summary-label[b-uldcl3wpow] {
    color: white;
}

.summary-value[b-uldcl3wpow] {
    font-weight: 600;
    color: #2c3e50;
    text-align: right;
}

.summary-row.highlight .summary-value[b-uldcl3wpow] {
    color: white;
}

.summary-value.large[b-uldcl3wpow] {
    font-size: 18px;
}

/* Action Buttons */
.action-buttons[b-uldcl3wpow] {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.btn[b-uldcl3wpow] {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary[b-uldcl3wpow] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-uldcl3wpow] {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.btn-secondary[b-uldcl3wpow] {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover[b-uldcl3wpow] {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.btn-danger[b-uldcl3wpow] {
    background: #e74c3c;
    color: white;
}

.btn-danger:hover[b-uldcl3wpow] {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(231, 76, 60, 0.3);
}

/* Modal Styles */
.modal-overlay[b-uldcl3wpow] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content[b-uldcl3wpow] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: slideIn-b-uldcl3wpow 0.3s ease;
}

@keyframes slideIn-b-uldcl3wpow {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-uldcl3wpow] {
    padding: 20px;
    border-bottom: 2px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-uldcl3wpow] {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
}

.close-btn[b-uldcl3wpow] {
    background: none;
    border: none;
    font-size: 24px;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover[b-uldcl3wpow] {
    color: #e74c3c;
}

.modal-body[b-uldcl3wpow] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    flex: 1;
}

.modal-search[b-uldcl3wpow] {
    padding: 10px 12px;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.modal-search:focus[b-uldcl3wpow] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.modal-list[b-uldcl3wpow] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-item[b-uldcl3wpow] {
    padding: 12px 15px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.modal-item:hover[b-uldcl3wpow] {
    background: #f0f8ff;
    border-color: #3498db;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.15);
    transform: translateX(5px);
}

.item-name[b-uldcl3wpow] {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.item-detail[b-uldcl3wpow] {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-grid[b-uldcl3wpow] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .summary-section[b-uldcl3wpow] {
        grid-template-columns: 1fr;
    }

    .search-controls[b-uldcl3wpow] {
        flex-direction: column;
    }

    .search-group[b-uldcl3wpow] {
        width: 100%;
    }

    .search-btn[b-uldcl3wpow],
    .add-btn[b-uldcl3wpow] {
        width: 100%;
    }

    .items-table[b-uldcl3wpow] {
        font-size: 12px;
    }

    .items-table th[b-uldcl3wpow],
    .items-table td[b-uldcl3wpow] {
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .sales-entry-container[b-uldcl3wpow] {
        gap: 15px;
        padding: 10px;
    }

    .info-section[b-uldcl3wpow],
    .item-search-section[b-uldcl3wpow],
    .items-section[b-uldcl3wpow],
    .summary-section[b-uldcl3wpow],
    .action-buttons[b-uldcl3wpow] {
        padding: 15px;
        border-radius: 6px;
    }

    .sales-header-title[b-uldcl3wpow] {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .status-header-title h2[b-uldcl3wpow] {
        font-size: 20px;
    }

    .info-grid[b-uldcl3wpow] {
        grid-template-columns: 1fr;
    }

    .search-controls[b-uldcl3wpow] {
        flex-direction: column;
        gap: 8px;
    }

    .search-group[b-uldcl3wpow] {
        width: 100%;
    }

    .search-btn[b-uldcl3wpow],
    .add-btn[b-uldcl3wpow] {
        width: 100%;
    }

    .modal-content[b-uldcl3wpow] {
        width: 95%;
        max-width: 100%;
        max-height: 90vh;
    }

    .action-buttons[b-uldcl3wpow] {
        flex-direction: column;
        gap: 8px;
    }

    .btn[b-uldcl3wpow] {
        width: 100%;
    }

    .items-table[b-uldcl3wpow] {
        font-size: 11px;
    }

    .items-table th[b-uldcl3wpow],
    .items-table td[b-uldcl3wpow] {
        padding: 6px 4px;
    }

    .qty-input[b-uldcl3wpow] {
        font-size: 12px;
        padding: 4px 6px;
        width: 60px;
    }

    .delete-btn[b-uldcl3wpow] {
        padding: 4px 8px;
        font-size: 11px;
    }

    .summary-row[b-uldcl3wpow] {
        padding: 8px 10px;
        font-size: 13px;
    }

    .summary-value.large[b-uldcl3wpow] {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sales-entry-container[b-uldcl3wpow] {
        gap: 12px;
        padding: 8px;
    }

    .info-section[b-uldcl3wpow],
    .item-search-section[b-uldcl3wpow],
    .items-section[b-uldcl3wpow],
    .summary-section[b-uldcl3wpow],
    .action-buttons[b-uldcl3wpow] {
        padding: 12px;
        border-radius: 4px;
    }

    .sales-header-title h2[b-uldcl3wpow] {
        font-size: 18px;
    }

    .section-title[b-uldcl3wpow],
    .modal-header h3[b-uldcl3wpow] {
        font-size: 14px;
    }

    .info-item label[b-uldcl3wpow],
    .search-group label[b-uldcl3wpow] {
        font-size: 12px;
    }

    .info-input[b-uldcl3wpow],
    .search-input[b-uldcl3wpow],
    .modal-search[b-uldcl3wpow] {
        font-size: 13px;
        padding: 8px 10px;
    }

    .lookup-btn[b-uldcl3wpow] {
        padding: 6px 10px;
        font-size: 11px;
    }

    .summary-right[b-uldcl3wpow] {
        margin-top: 10px;
    }

    .items-table-wrapper[b-uldcl3wpow] {
        font-size: 10px;
    }

    .items-table th[b-uldcl3wpow],
    .items-table td[b-uldcl3wpow] {
        padding: 4px 2px;
    }

    .qty-input[b-uldcl3wpow] {
        font-size: 11px;
        padding: 3px 4px;
        width: 50px;
    }

    .delete-btn[b-uldcl3wpow] {
        padding: 3px 6px;
        font-size: 10px;
    }

    .btn[b-uldcl3wpow] {
        padding: 10px 16px;
        font-size: 12px;
    }

    .summary-value.large[b-uldcl3wpow] {
        font-size: 14px;
    }
}
/* /Pages/SalesSummary.razor.rz.scp.css */
/* Style for Columns, Export, and Refresh buttons to match screenshot */
.daybook-actions .btn[b-n0s7oeawwo],
.daybook-actions .btn-group > .btn[b-n0s7oeawwo] {
    background: #0984e3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(9,132,227,0.08);
    margin-right: 8px;
    margin-bottom: 4px;
    transition: background 0.2s, color 0.2s;
}

.daybook-actions .btn:hover[b-n0s7oeawwo],
.daybook-actions .btn-group > .btn:hover[b-n0s7oeawwo] {
    background: #1976d2;
    color: #fff;
}

.daybook-actions .btn-pill[b-n0s7oeawwo] {
    border-radius: 8px;
    padding-left: 18px;
    padding-right: 18px;
}

.daybook-actions .dropdown-menu[b-n0s7oeawwo] {
    min-width: 160px;
}

.daybook-actions .dropdown-item[b-n0s7oeawwo] {
    color: #222;
}

.daybook-actions .dropdown-item:hover[b-n0s7oeawwo] {
    background: #f1f6fb;
    color: #0984e3;
}
.daybook-table th[b-n0s7oeawwo], .daybook-table td[b-n0s7oeawwo] {
    min-width: 90px;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.daybook-table th[data-col="Party Code"][b-n0s7oeawwo], .daybook-table td[data-col="Party Code"][b-n0s7oeawwo],
.daybook-table th[data-col="Cost Centre"][b-n0s7oeawwo], .daybook-table td[data-col="Cost Centre"][b-n0s7oeawwo] {
    min-width: 80px;
    max-width: 120px;
}
.daybook-pagination[b-n0s7oeawwo] {
    justify-content: flex-end;
    margin-top: 8px;
}
.custom-header th[b-n0s7oeawwo] {
    background: #e3f2fd !important; /* Light blue */
    color: #1565c0 !important;
}
.daybook-page[b-n0s7oeawwo] {
    padding: 24px;
    background: #f2f4f8;
    min-height: 100vh;
}

.daybook-hero[b-n0s7oeawwo] {
    background: linear-gradient(135deg, #0f62fe 0%, #003a92 100%);
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.daybook-label[b-n0s7oeawwo] {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.daybook-date[b-n0s7oeawwo] {
    display: flex;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
}

.daybook-actions[b-n0s7oeawwo] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-pill[b-n0s7oeawwo] {
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 8px 20px;
    font-weight: 600;
}

.btn-pill:hover[b-n0s7oeawwo] {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.daybook-tabs .nav-link[b-n0s7oeawwo] {
    border-radius: 999px;
    padding: 8px 22px;
    background: #fff;
    color: #003a92;
    border: 1px solid transparent;
    font-weight: 600;
}

.daybook-tabs .nav-link.active[b-n0s7oeawwo] {
    background: #003a92;
    color: #fff;
}

.daybook-filter[b-n0s7oeawwo] {
    border: none;
    border-radius: 16px;
    padding: 24px;
}

.filter-grid[b-n0s7oeawwo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.filter-card[b-n0s7oeawwo] {
    background: #f8fbff;
    border: 1px solid #dde3f0;
    border-radius: 12px;
    padding: 16px;
}

.daybook-loading[b-n0s7oeawwo],
.daybook-empty[b-n0s7oeawwo] {
    border: none;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    font-weight: 600;
    background: #fff;
}

.daybook-table-card[b-n0s7oeawwo] {
    border: none;
    border-radius: 16px;
}

.daybook-table thead th[b-n0s7oeawwo] {
    background: #0f62fe;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.daybook-table tbody td[b-n0s7oeawwo] {
    background: #fff;
}

.grand-total-row td[b-n0s7oeawwo] {
    background: #fff7d6;
    font-weight: 700;
}

.grand-label[b-n0s7oeawwo] {
    color: #0f62fe;
}

.daybook-pagination[b-n0s7oeawwo] {
    font-weight: 600;
}

.daybook-columns[b-n0s7oeawwo] {
    min-width: 220px;
    max-height: 320px;
    overflow-y: auto;
}
