@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-0p2rx2mkxa] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-0p2rx2mkxa] {
    flex: 1;
}

.main-content[b-0p2rx2mkxa] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content[b-0p2rx2mkxa] {
    flex: 1;
}

/* General adjustments for better mobile responsiveness */
@media (max-width: 640.98px) {
    .page[b-0p2rx2mkxa] {
        padding-bottom: 60px; /* Ensure space for bottom navigation */
    }
}

@media (min-width: 641px) {
    .page[b-0p2rx2mkxa] {
        flex-direction: row;
    }

    article[b-0p2rx2mkxa] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.bottom-nav[b-sbxggkjyow] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    padding: 5px 0;
    z-index: 1000;
}

.nav-button[b-sbxggkjyow] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.75em;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    position: relative; /* For dropdown positioning */
}

.nav-button i[b-sbxggkjyow] {
    font-size: 1.4em;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.nav-button.active[b-sbxggkjyow] {
    color: #6a11cb; /* Active color from the gradient */
}

.nav-button.active i[b-sbxggkjyow] {
    color: #6a11cb; /* Active icon color */
}

.nav-button:hover[b-sbxggkjyow] {
    color: #2575fc; /* Hover color from the gradient */
}

.nav-button:hover i[b-sbxggkjyow] {
    color: #2575fc; /* Hover icon color */
}

.nav-button-inner[b-sbxggkjyow] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    padding: 0;
}

.more-dropdown[b-sbxggkjyow] {
    position: absolute;
    bottom: 60px; /* Adjust based on the height of .bottom-nav */
    right: 0; /* Align to the right edge of the 'More' button container */
    background: #fff;
    color: #23222b;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    min-width: 140px;
    z-index: 10;
    animation: fadeInUp-b-sbxggkjyow 0.2s;
    border: 1px solid #dee2e6;
}

.more-dropdown button[b-sbxggkjyow] {
    background: none;
    border: none;
    padding: 10px 15px;
    text-align: left;
    color: #212529;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.15s;
    border-bottom: 1px solid #e9ecef;
}

.more-dropdown button:last-child[b-sbxggkjyow] {
    border-bottom: none;
}

.more-dropdown button:hover[b-sbxggkjyow] {
    background-color: #f8f9fa;
    color: #0d6efd;
}

@keyframes fadeInUp-b-sbxggkjyow {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}
/* /Pages/Billing.razor.rz.scp.css */
.billing-page-container[b-bdc0h8s7sc] {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure container takes full height */
}

.billing-content[b-bdc0h8s7sc] {
    display: flex;
flex-direction: row; /* Changed to row for side-by-side layout */
    flex-grow: 1; /* Allow content to take available space */
    overflow: hidden; /* Hide overflow if content is larger than container */
}

.categories-sidebar[b-bdc0h8s7sc] {
    width: 120px; /* Reduced width to approximately half */
    flex-shrink: 0; /* Prevent shrinking */
    border-right: 1px solid #ccc; /* Optional: Add a separator line */
    padding: 10px;
}

.categories-sidebar h4[b-bdc0h8s7sc] {
    font-size: 0.9em; /* Smaller font size for the heading */
}

.categories-sidebar li[b-bdc0h8s7sc] {
    font-size: 0.9em; /* Smaller font size for category items */
}

.categories-sidebar ul[b-bdc0h8s7sc] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-sidebar li[b-bdc0h8s7sc] {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.categories-sidebar li.active[b-bdc0h8s7sc] {
    background-color: #f0f0f0;
    font-weight: bold;
}

.products-list[b-bdc0h8s7sc] {
    flex-grow: 1; /* Allow products list to take remaining space */
    padding: 10px;
    overflow-y: auto; /* Add scroll if products exceed height */
}

.product-grid[b-bdc0h8s7sc] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Multi-column layout */
    gap: 10px; /* Gap between product items */
}

.product-item[b-bdc0h8s7sc] {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name[b-bdc0h8s7sc] {
    font-weight: bold;
    margin-bottom: 5px;
}

.product-controls[b-bdc0h8s7sc] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.product-controls button[b-bdc0h8s7sc] {
    margin: 0 5px;
}

.product-price[b-bdc0h8s7sc] {
    color: green;
}

.total-section[b-bdc0h8s7sc] {
    padding: 10px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0; /* Prevent shrinking */
}

.save-button[b-bdc0h8s7sc] {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

/* Modal Styling (basic) */
.modal-overlay[b-bdc0h8s7sc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-bdc0h8s7sc] {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.modal-content button[b-bdc0h8s7sc] {
    margin: 10px;
}

/* Styles for the multi-step form */
.form-step[b-bdc0h8s7sc] {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-group[b-bdc0h8s7sc] {
    margin-bottom: 15px;
}

.form-group label[b-bdc0h8s7sc] {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"][b-bdc0h8s7sc] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.validation-message[b-bdc0h8s7sc] {
    color: red;
    font-size: 0.9em;
}

.btn[b-bdc0h8s7sc] {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.btn-primary[b-bdc0h8s7sc] {
    background-color: #007bff;
    color: white;
}

.btn-secondary[b-bdc0h8s7sc] {
    background-color: #6c757d;
    color: white;
}

/* Styles for Step 3 Review Section */
.review-section[b-bdc0h8s7sc] {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

.customer-details-summary[b-bdc0h8s7sc] { /* Renamed from customer-details-review for clarity */
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.customer-details-summary p[b-bdc0h8s7sc] {
    margin-bottom: 5px;
    font-size: 0.9em; /* Smaller font size */
}

.product-review-list[b-bdc0h8s7sc] { /* Renamed from product-review-grid for clarity and flexibility */
    display: flex; /* Use flexbox for responsive cards */
    flex-wrap: wrap; /* Allow cards to wrap to the next line */
    gap: 10px; /* Gap between product cards */
    margin-bottom: 20px;
}

.product-review-card[b-bdc0h8s7sc] {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    font-size: 0.9em; /* Smaller font size for card content */
    flex: 1 1 180px; /* Flex properties for responsiveness: grow, shrink, basis */
    max-width: 250px; /* Optional: Limit max width of cards */
}

.product-review-name[b-bdc0h8s7sc] {
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Prevent long names from breaking layout */
}

.product-review-quantity[b-bdc0h8s7sc] {
    margin-bottom: 5px;
}

.product-review-total[b-bdc0h8s7sc] {
    font-weight: bold;
    color: green;
}

.billing-summary-inputs[b-bdc0h8s7sc] { /* Renamed from summary-section for clarity */
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 20px;
}

.billing-summary-inputs .form-group[b-bdc0h8s7sc] {
    margin-bottom: 10px;
}

.billing-summary-inputs label[b-bdc0h8s7sc] {
    font-weight: normal; /* Less bold than main form labels */
    font-size: 0.9em; /* Smaller font size */
}

.billing-summary-inputs input[type="number"][b-bdc0h8s7sc] {
    width: auto; /* Allow input to size based on content */
    display: inline-block; /* Align input next to label */
    margin-left: 10px;
    padding: 5px;
    font-size: 0.9em; /* Smaller font size */
}

.final-total-section[b-bdc0h8s7sc] { /* Renamed from final-total for clarity */
    margin-top: 15px;
    font-size: 1.1em; /* Slightly larger font for total */
    font-weight: bold;
    text-align: right;
}
/* /Pages/GInvoiceList.razor.rz.scp.css */
.header-section[b-rqbq6qsvhr] {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.header-content[b-rqbq6qsvhr] {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-title[b-rqbq6qsvhr] {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.welcome-message[b-rqbq6qsvhr] {
    font-size: 1.1em;
    opacity: 0.9;
}

.invoices-heading[b-rqbq6qsvhr] {
    font-size: 1.8em;
    font-weight: bold;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333;
}

.search-bar-container[b-rqbq6qsvhr] {
    padding: 0 20px;
    margin-bottom: 20px;
}

.search-input[b-rqbq6qsvhr] {
    border-radius: 25px 0 0 25px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.search-button[b-rqbq6qsvhr] {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover[b-rqbq6qsvhr] {
    background-color: #0056b3;
}

.input-group-append .search-button[b-rqbq6qsvhr] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.invoice-card[b-rqbq6qsvhr] {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 0 20px 20px 20px;
    padding: 15px 20px; /* Adjusted padding */
    transition: transform 0.2s ease-in-out;
    position: relative; /* Added for positioning the overlay menu */
}

.invoice-card:hover[b-rqbq6qsvhr] {
    transform: translateY(-5px);
}

.invoice-card-header[b-rqbq6qsvhr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; /* Adjusted margin */
    position: relative; /* Ensure positioning context for absolute children */
}

.invoice-status-badge[b-rqbq6qsvhr] {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    border-radius: 0 15px 0 15px; /* Top-right corner rounded */
    font-size: 0.8em;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.badge-paid[b-rqbq6qsvhr] {
    background-color: #28a745; /* Green for paid */
}

.badge-unpaid[b-rqbq6qsvhr] {
    background-color: #dc3545; /* Red for unpaid */
}

.invoice-number[b-rqbq6qsvhr] {
    font-size: 1.2em; /* Adjusted font size */
    font-weight: bold;
    color: #333;
    margin: 0;
}

.customer-name[b-rqbq6qsvhr] {
    font-size: 0.9em; /* Adjusted font size */
    color: #666;
}

.invoice-card-body[b-rqbq6qsvhr] {
    margin-bottom: 0; /* Removed margin-bottom */
}

.detail-item[b-rqbq6qsvhr] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px; /* Adjusted margin */
}

.detail-label[b-rqbq6qsvhr] {
    font-weight: 500;
    color: #555;
}

.detail-value[b-rqbq6qsvhr] {
    color: #333;
}

.total-amount[b-rqbq6qsvhr] {
    font-weight: bold;
    color: #0056b3; /* Darker blue for total */
}

.invoice-card-footer[b-rqbq6qsvhr] {
    display: flex;
    justify-content: space-between; /* Distribute items */
    align-items: center;
    padding-top: 10px;
}

.btn-action-menu[b-rqbq6qsvhr] {
    background-color: transparent !important;
    border: none !important;
    color: #6c757d;
    font-size: 1.2em; /* Adjusted font size for ellipsis */
    padding: 5px;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.btn-action-menu:hover[b-rqbq6qsvhr] {
    color: #007bff; /* Adjust hover color */
}

/* Styles for the custom action menu */
.invoice-action-menu-container[b-rqbq6qsvhr] {
    position: relative;
    display: inline-block;
}

.action-menu-popup[b-rqbq6qsvhr] {
    position: absolute;
    top: 0; /* Position to cover the entire card */
    left: 0; /* Position to cover the entire card */
    width: 100%; /* Cover the entire card */
    height: 100%; /* Cover the entire card */
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent background */
    border-radius: 15px; /* Match card border-radius */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex; /* Use flexbox for centering items */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    z-index: 1050; /* Ensure it appears above other content and modals */
    overflow: hidden; /* Ensures rounded corners apply to content */
    padding: 20px; /* Add some padding inside the overlay */
}

/* Overlay for action menu to cover the card */
.action-menu-overlay[b-rqbq6qsvhr] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15); /* subtle dark overlay */
    border-radius: 15px; /* match card border-radius */
    z-index: 1049; /* just below the popup */
    cursor: pointer;
}

/* Make sure the popup is above the overlay */
.action-menu-popup-overlay[b-rqbq6qsvhr] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98); /* slightly more opaque for clarity */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    padding: 20px;
    overflow: hidden;
}

.action-menu-item[b-rqbq6qsvhr] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px; /* Adjusted padding for better spacing in overlay */
    font-size: 1em; /* Slightly larger font size */
    color: #333;
    background-color: transparent;
    border: none;
    width: 80%; /* Make items take up more width */
    max-width: 250px; /* Limit max width for larger screens */
    text-align: center; /* Center text within the button */
    justify-content: center; /* Center content horizontally */
    border-radius: 8px; /* Rounded corners for menu items */
    margin-bottom: 8px; /* Space between items */
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.action-menu-item:last-child[b-rqbq6qsvhr] {
    margin-bottom: 0; /* No margin for the last item */
}

.action-menu-item:hover[b-rqbq6qsvhr] {
    background-color: #f8f9fa;
    color: #007bff;
}

.action-menu-item i[b-rqbq6qsvhr] {
    font-size: 1em;
    color: #6c757d; /* Icon color */
}

.action-menu-item:hover i[b-rqbq6qsvhr] {
    color: #007bff; /* Icon color on hover */
}

.btn-close-action-menu[b-rqbq6qsvhr] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #6c757d;
    cursor: pointer;
    z-index: 1060; /* Ensure it's above the menu popup */
}

.btn-close-action-menu:hover[b-rqbq6qsvhr] {
    color: #dc3545; /* Red color on hover for close button */
}

.floating-add-button[b-rqbq6qsvhr] {
    position: fixed;
    bottom: 80px; /* Adjust as needed to be above the bottom navigation */
    right: 20px;
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    z-index: 1000;
}

.floating-add-button:hover[b-rqbq6qsvhr] {
    transform: scale(1.1);
}

.floating-add-button i[b-rqbq6qsvhr] {
    color: white;
}

/* General adjustments for better mobile responsiveness */
@media (max-width: 768px) {
    .header-section[b-rqbq6qsvhr] {
        padding: 15px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .app-title[b-rqbq6qsvhr] {
        font-size: 2em;
    }

    .welcome-message[b-rqbq6qsvhr] {
        font-size: 1em;
    }

    .invoices-heading[b-rqbq6qsvhr] {
        margin-left: 15px;
        font-size: 1.5em;
    }

    .search-bar-container[b-rqbq6qsvhr] {
        padding: 0 15px;
    }

    .invoice-card[b-rqbq6qsvhr] {
        margin: 0 15px 15px 15px;
        padding: 15px;
    }

    .invoice-card-footer[b-rqbq6qsvhr] {
        flex-direction: row; /* Keep row direction */
        align-items: center;
    }

    .btn[b-rqbq6qsvhr] {
        width: 100%;
        margin-bottom: 10px;
    }

    .floating-add-button[b-rqbq6qsvhr] {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        bottom: 70px;
        right: 15px;
    }
}

.selected-invoice[b-rqbq6qsvhr] {
    background: #e3f0ff !important; /* Light blue highlight for selected invoice */
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.10);
    border: 1.5px solid #90c2ff;
}

.invoices-header[b-rqbq6qsvhr] {
    background: #fff;
    padding-top: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-icon-btn[b-rqbq6qsvhr] {
    background: none;
    border: none;
    color: #333;
    font-size: 1.5em;
    padding: 6px 10px;
    border-radius: 50%;
    transition: background 0.2s;
}
.search-icon-btn:hover[b-rqbq6qsvhr] {
    background: #f0f4fa;
}

/* Bottom sheet overlay for action menu */
.bottom-sheet-overlay[b-rqbq6qsvhr] {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.18);
    z-index: 2000;
}

.bottom-sheet-action-menu[b-rqbq6qsvhr] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    background: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    z-index: 2100;
    padding: 28px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    animation: bottomSheetIn-b-rqbq6qsvhr 0.22s cubic-bezier(.4,0,.2,1);
}
@keyframes bottomSheetIn-b-rqbq6qsvhr {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.bottom-sheet-title[b-rqbq6qsvhr] {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 18px;
    margin-top: 8px;
    color: #222;
    text-align: left;
    width: 100%;
}

.bottom-sheet-drag-indicator[b-rqbq6qsvhr] {
    width: 40px;
    height: 5px;
    background: #e0e0e0;
    border-radius: 3px;
    margin: 0 auto 10px auto;
}

.btn-close-bottom-sheet[b-rqbq6qsvhr] {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.4em;
    color: #888;
    cursor: pointer;
    z-index: 2200;
}
.btn-close-bottom-sheet:hover[b-rqbq6qsvhr] {
    color: #dc3545;
}

.bottom-sheet-action-menu .action-menu-item[b-rqbq6qsvhr] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0 14px 0;
    font-size: 1.08em;
    color: #222;
    background: none;
    border: none;
    width: 100%;
    max-width: 340px;
    text-align: left;
    justify-content: flex-start;
    border-radius: 10px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.bottom-sheet-action-menu .action-menu-item:last-child[b-rqbq6qsvhr] {
    margin-bottom: 0;
}
.bottom-sheet-action-menu .action-menu-item:hover[b-rqbq6qsvhr] {
    background: #f0f4fa;
    color: #007bff;
}
.bottom-sheet-action-menu .action-menu-item i[b-rqbq6qsvhr] {
    font-size: 1.15em;
    color: #6c757d;
}
.bottom-sheet-action-menu .action-menu-item:hover i[b-rqbq6qsvhr] {
    color: #007bff;
}

.invoice-icon[b-rqbq6qsvhr] {
    background: #f0f4fa;
    border-radius: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .bottom-sheet-action-menu[b-rqbq6qsvhr] {
        min-height: 260px;
        padding: 18px 8px 24px 8px;
    }
    .bottom-sheet-title[b-rqbq6qsvhr] {
        font-size: 1.1em;
    }
    .invoice-icon[b-rqbq6qsvhr] {
        width: 38px;
        height: 38px;
    }
}

.invoice-divider[b-rqbq6qsvhr] {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 10px 0; /* Add margin for spacing */
}
/* /Pages/InvoiceCreator.razor.rz.scp.css */
.form-label[b-uyw34e68xq] {
    color: #948d8d;
}

.product-search-container[b-uyw34e68xq] {
    position: relative;
}

.product-suggestions-list[b-uyw34e68xq] {
    position: absolute;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 1000; /* Ensure it appears above other elements */
    background-color: #fff; /* White background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.product-suggestions-list li[b-uyw34e68xq] {
    padding: 8px 12px;
    cursor: pointer;
}

.product-suggestions-list li:hover[b-uyw34e68xq] {
    background-color: #f0f0f0; /* Highlight on hover */
}
/* /Pages/Reports.razor.rz.scp.css */
.report-card[b-qgzszcm7n4] {
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.report-card:hover[b-qgzszcm7n4] {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.report-icon[b-qgzszcm7n4] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.card-title[b-qgzszcm7n4] {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Queue Manager Styles */
.queue-manager-container[b-qgzszcm7n4] {
    padding: 20px;
}

.qr-code-section[b-qgzszcm7n4] {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code-section #qrcode[b-qgzszcm7n4] {
    display: inline-block;
    margin: 10px auto;
    border: 1px solid #ccc;
    padding: 5px;
}

.customer-list[b-qgzszcm7n4] {
    max-height: 600px; /* Adjust as needed */
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px;
}

.customer-item[b-qgzszcm7n4] {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-item h6[b-qgzszcm7n4] {
    margin-bottom: 0;
    font-weight: bold;
}

.customer-item small[b-qgzszcm7n4] {
    color: #666;
}

.customer-item .btn-group .btn[b-qgzszcm7n4] {
    margin-left: 5px;
}

/* Status specific styling */
.status-waiting[b-qgzszcm7n4] {
    border-left: 5px solid #007bff; /* Blue */
}

.status-called[b-qgzszcm7n4] {
    border-left: 5px solid #ffc107; /* Yellow */
}

.status-served[b-qgzszcm7n4] {
    border-left: 5px solid #28a745; /* Green */
}

.status-removed[b-qgzszcm7n4] {
    border-left: 5px solid #dc3545; /* Red */
    opacity: 0.7;
    text-decoration: line-through;
}

/* Loading Overlay */
.loading-overlay[b-qgzszcm7n4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
