/* app/Components/TenderAmountModal.razor.rz.scp.css */
/* Tender Amount Modal Styles - Professional Design */

.tender-amount-overlay[b-sd3muqsgbi] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 41, 55, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(6px);
}

.tender-amount-content[b-sd3muqsgbi] {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.tender-amount-header[b-sd3muqsgbi] {
    background: #fff;
    padding: 16px 24px;
    border-bottom: 2px solid #7699BC;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .tender-amount-header h3[b-sd3muqsgbi] {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
        color: #1B2937;
        letter-spacing: 0.5px;
    }

.close-button[b-sd3muqsgbi] {
    background: #BF5A64;
    border: 2px solid #d06673;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.close-button:hover[b-sd3muqsgbi] {
    background: #d06673;
    border-color: #e07785;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 90, 100, 0.4);
}

.close-button:active[b-sd3muqsgbi] {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.close-button i[b-sd3muqsgbi] {
    display: block;
    font-style: normal;
}

/* Body */
.tender-amount-body[b-sd3muqsgbi] {
    display: flex;
    flex: 1;
    overflow: hidden;
    background: #f8f9fa;
}

/* Left Section */
.amount-left-section[b-sd3muqsgbi] {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
}

.payment-method-label[b-sd3muqsgbi] {
    background: #436689;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.amount-fields[b-sd3muqsgbi] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amount-field[b-sd3muqsgbi] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amount-field label[b-sd3muqsgbi] {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.3px;
}

.amount-display[b-sd3muqsgbi] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #7699BC;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.amount-display:focus-within[b-sd3muqsgbi] {
    border-color: #8eadcf;
    box-shadow: 0 4px 12px rgba(118, 153, 188, 0.3);
}

.amount-input[b-sd3muqsgbi] {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    padding:8px 16px;
    text-align: right;
    color: #1B2937;
    font-family: 'Segoe UI', 'Courier New', monospace;
}

.amount-input:focus[b-sd3muqsgbi] {
    outline: none;
}

.amount-input.editable[b-sd3muqsgbi] {
    background: #f0f8ff;
    cursor: text;
    border-radius: 6px;
}

.amount-input.editable:focus[b-sd3muqsgbi] {
    background: #e6f3ff;
}

.currency-label[b-sd3muqsgbi] {
    background: #2e475c;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 6px;
    min-width: 70px;
    text-align: center;
    letter-spacing: 0.5px;
    border: 1px solid #7699BC;
}

.payment-instructions[b-sd3muqsgbi] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: auto;
    color:#000;
}

.payment-instructions i[b-sd3muqsgbi] {
    color: #DF9F20;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

    .payment-instructions span[b-sd3muqsgbi] {
        font-size:14px;
        color: #000;
        line-height: 1.5;
        font-weight: 400;
    }

/* Keypad Section */
.keypad-section[b-sd3muqsgbi] {
    width: 300px;
    padding: 24px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keypad-grid[b-sd3muqsgbi] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.keypad-btn[b-sd3muqsgbi] {
    background: #2e475c;
    color: #ffffff;
    border: 2px solid #7699BC;
    border-radius: 8px;
    padding: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-height: 65px;
}

.keypad-btn:hover[b-sd3muqsgbi] {
    background: #3a5670;
    border-color: #8eadcf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.keypad-btn:active[b-sd3muqsgbi] {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.keypad-btn.clear-btn[b-sd3muqsgbi] {
    grid-column: span 3;
    background: #313d42;
    border-color: #BF5A64;
}

.keypad-btn.clear-btn:hover[b-sd3muqsgbi] {
    background: #3d4a4f;
    border-color: #d06673;
}

/* Footer */
.tender-amount-footer[b-sd3muqsgbi] {
    background: #ffffff;
    padding: 18px 24px;
    border-top: 2px solid #e1e5e9;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-force[b-sd3muqsgbi],
.btn-accept[b-sd3muqsgbi],
.btn-cancel[b-sd3muqsgbi] {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 40px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-force[b-sd3muqsgbi] {
    background: #313d42;
    color: #ffffff;
    border: 2px solid #7699BC;
}

.btn-force:hover[b-sd3muqsgbi] {
    background: #3d4a4f;
    border-color: #8eadcf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-accept[b-sd3muqsgbi] {
    background: #4d9078;
    color: #ffffff;
    border: 2px solid #47856f;
}

.btn-accept:hover[b-sd3muqsgbi] {
    background: #5aa088;
    border-color: #5aa088;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 144, 120, 0.3);
}

.btn-cancel[b-sd3muqsgbi] {
    background-color: rgba(191, 90, 100, 1);
    color: #ffffff;
    border:1px solid  rgba(191, 90, 100, 1);
}

    .btn-cancel:hover[b-sd3muqsgbi] {
        background-color: rgba(191, 90, 100,0.5);
        border-color: #d06673;
        transform: translateY(-2px);
    }

.btn-force:active[b-sd3muqsgbi],
.btn-accept:active[b-sd3muqsgbi],
.btn-cancel:active[b-sd3muqsgbi] {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tender-amount-content[b-sd3muqsgbi] {
        width: 98%;
        max-height: 95vh;
    }

    .tender-amount-header[b-sd3muqsgbi] {
        padding: 14px 20px;
    }

    .tender-amount-header h3[b-sd3muqsgbi] {
        font-size: 1.25rem;
    }

    .close-button[b-sd3muqsgbi] {
        min-width: 38px;
        min-height: 38px;
        font-size: 1.3rem;
    }

    .tender-amount-body[b-sd3muqsgbi] {
        flex-direction: column;
    }

    .amount-left-section[b-sd3muqsgbi] {
        border-right: none;
        border-bottom: 2px solid #7699BC;
        padding: 20px;
    }

    .keypad-section[b-sd3muqsgbi] {
        width: 100%;
        padding: 18px;
    }

    .payment-method-label[b-sd3muqsgbi] {
        font-size: 18px;
        padding: 10px 20px;
    }

    .amount-input[b-sd3muqsgbi] {
        font-size: 14px;
        padding: 8px 15px;
    }

    .keypad-btn[b-sd3muqsgbi] {
        padding: 18px;
        font-size: 1.2rem;
        min-height: 60px;
    }

    .tender-amount-footer[b-sd3muqsgbi] {
        padding: 10px 20px;
    }

    .btn-force[b-sd3muqsgbi],
    .btn-accept[b-sd3muqsgbi],
    .btn-cancel[b-sd3muqsgbi] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tender-amount-header h3[b-sd3muqsgbi] {
        font-size: 16px;
    }

    .close-button[b-sd3muqsgbi] {
        min-width: 36px;
        min-height: 36px;
        font-size: 1.2rem;
        padding: 6px;
    }

    .amount-left-section[b-sd3muqsgbi] {
        padding: 16px;
        gap: 16px;
    }

    .payment-method-label[b-sd3muqsgbi] {
        font-size: 18px;
        padding: 12px 16px;
    }

    .amount-input[b-sd3muqsgbi] {
        font-size: 1.4rem;
        padding: 10px 12px;
    }

    .currency-label[b-sd3muqsgbi] {
        font-size: 1rem;
        padding: 12px 14px;
        min-width: 60px;
    }

    .keypad-section[b-sd3muqsgbi] {
        padding: 14px;
    }

    .keypad-grid[b-sd3muqsgbi] {
        gap: 10px;
    }

    .keypad-btn[b-sd3muqsgbi] {
        padding: 15px;
        font-size: 1.1rem;
    }

    .payment-instructions[b-sd3muqsgbi] {
        padding: 14px 16px;
    }

    .payment-instructions i[b-sd3muqsgbi] {
        font-size: 1.2rem;
    }

    .payment-instructions span[b-sd3muqsgbi] {
        font-size: 0.9rem;
    }


}
/* app/Components/TenderModal.razor.rz.scp.css */
/* Tender Modal Styles - Professional Design */

.tender-modal-overlay[b-nheeszxasf] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 41, 55, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(6px);
}

.tender-modal-content[b-nheeszxasf] {
    background: #ffffff;
    width: 95%;
    max-width: 950px;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.tender-modal-header[b-nheeszxasf] {
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid #c2c2c2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .tender-modal-header h3[b-nheeszxasf] {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #1B2937;
        letter-spacing: 0.5px;
    }

.close-button[b-nheeszxasf] {
    background: #BF5A64;
    border: 2px solid #d06673;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.close-button:hover[b-nheeszxasf] {
    background: #d06673;
    border-color: #e07785;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 90, 100, 0.4);
}

.close-button:active[b-nheeszxasf] {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.close-button i[b-nheeszxasf] {
    display: block;
    font-style: normal;
}

/* Body */
.tender-modal-body[b-nheeszxasf] {
    display: flex;
    flex: 1;
    overflow: hidden;
    background: #f8f9fa;
}

/* Left Section - Transaction Summary */
.tender-left-section[b-nheeszxasf] {
    width: 35%;
    background: #fff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid #7699BC;
}

.tender-totals[b-nheeszxasf],
.payment-status[b-nheeszxasf] {
    background: #436689;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.total-row[b-nheeszxasf],
.status-row[b-nheeszxasf] {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.total-row.highlight[b-nheeszxasf] {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 12px;
    margin-top: 8px;
}

.total-label[b-nheeszxasf],
.status-label[b-nheeszxasf] { 
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.total-amount[b-nheeszxasf],
.status-amount[b-nheeszxasf] {
    font-weight: 400;
    font-size: 14px;
}
.total-row.highlight .total-amount[b-nheeszxasf] {
    font-weight: 600;
}
    .total-amount.green[b-nheeszxasf],
    .status-amount.green[b-nheeszxasf] {
        color: #fff;
    }

.total-amount.yellow[b-nheeszxasf] {
    color: #fff;
    font-size:14px;
}

.separator-line[b-nheeszxasf] {
    height: 1px;
    background: #c2c2c2;
    margin: 4px 0;
}

/* Payment Details Table */
.payment-details[b-nheeszxasf] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
    border-radius: 8px;
    padding: 0px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-table[b-nheeszxasf] {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.payment-table thead[b-nheeszxasf] {
    background: #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 1;
}

.payment-table th[b-nheeszxasf] {
    padding: 10px 8px;
    text-align: left;
    font-weight: 600;
    color: #0d0d0d;
    border-bottom: 2px solid #bdc3c7;
    font-size: 0.9rem;
}

.payment-table td[b-nheeszxasf] {
    padding: 10px 8px;
    border-bottom: 1px solid #e6e6e6;
    color: #0d0d0d;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-table tbody tr:hover[b-nheeszxasf] {
    background-color: #f8f9fa;
}

.no-payments[b-nheeszxasf] {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 40px !important;
    font-size: 0.95rem;
}

/* Right Section - Payment Methods */
.tender-right-section[b-nheeszxasf] {
    width: 65%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #ffffff;
}

/* Payment Methods Grid */
.payment-methods-grid[b-nheeszxasf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    flex: 1;
    align-content: start;
}

.payment-method-btn[b-nheeszxasf] {
    background: rgba(51, 78, 102, 0.7);
    border: 2px solid #7699bc;
    color: #efefef;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.3px;
}

    .payment-method-btn:hover[b-nheeszxasf] {
        background: rgba(51, 78, 102, 0.5);
        transform: translateY(-2px);
    }

.payment-method-btn:active[b-nheeszxasf] {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Action Buttons */
.tender-actions[b-nheeszxasf] {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 2px solid #e1e5e9;
}

    .tender-actions .btn-tender-action[b-nheeszxasf] {
        background: rgba(51, 78, 102, 0.7);
        border: 2px solid #7699bc;
        flex: 1;
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.2s ease;
        min-height: 36px;
        letter-spacing: 0.3px;
    }
    .tender-actions .btn-tender-action:hover[b-nheeszxasf] {
        background: rgba(51, 78, 102, 0.5);
    }

        .btn-tender-cancel[b-nheeszxasf] {
            flex: 1;
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.2s ease;
            min-height: 36px;
            letter-spacing: 0.3px;
        }

        .btn-tender-action[b-nheeszxasf] {
            background: #2e475c;
            color: #ffffff;
            border: 2px solid #7699BC;
        }

            .btn-tender-action:hover[b-nheeszxasf] {
                background: #3a5670;
                border-color: #8eadcf;
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            }

        .btn-tender-cancel[b-nheeszxasf] {
            background-color: rgba(191, 90, 100, 1);
            color: #ffffff;
            border: 2px solid rgba(191, 90, 100, 1);
        }

            .btn-tender-cancel:hover[b-nheeszxasf] {
                background-color: rgba(191, 90, 100, 0.8);
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            }

            .btn-tender-action:active[b-nheeszxasf],
            .btn-tender-cancel:active[b-nheeszxasf] {
                transform: translateY(0);
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            }
        /* Scrollbar Styling */
        .tender-left-section[b-nheeszxasf]::-webkit-scrollbar,
        .payment-details[b-nheeszxasf]::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        .tender-left-section[b-nheeszxasf]::-webkit-scrollbar-track,
        .payment-details[b-nheeszxasf]::-webkit-scrollbar-track {
            background: #ecf0f1;
            border-radius: 4px;
        }

        .tender-left-section[b-nheeszxasf]::-webkit-scrollbar-thumb,
        .payment-details[b-nheeszxasf]::-webkit-scrollbar-thumb {
            background: #bdc3c7;
            border-radius: 4px;
        }

            .tender-left-section[b-nheeszxasf]::-webkit-scrollbar-thumb:hover,
            .payment-details[b-nheeszxasf]::-webkit-scrollbar-thumb:hover {
                background: #95a5a6;
            }
        /* Responsive Design */
        @media (max-width: 1024px) {
            .tender-modal-body[b-nheeszxasf] {
                flex-direction: column;
            }

            .tender-left-section[b-nheeszxasf],
            .tender-right-section[b-nheeszxasf] {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #7699BC;
            }

            .tender-left-section[b-nheeszxasf] {
                max-height: 40vh;
            }

            .payment-methods-grid[b-nheeszxasf] {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }

        }

        @media (max-width: 768px) {
            .tender-modal-content[b-nheeszxasf] {
                width: 98%;
                max-height: 95vh;

            }

            .tender-modal-header[b-nheeszxasf] {
                padding: 14px 20px;
            }

            .tender-left-section[b-nheeszxasf],
            .tender-right-section[b-nheeszxasf] {
                padding: 14px;
            }

            .payment-methods-grid[b-nheeszxasf] {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 12px;
            }


            .tender-actions[b-nheeszxasf] {
                flex-direction: column;
            }
            
        }

        @media (max-width: 480px) {       
           
            .payment-methods-grid[b-nheeszxasf] {
                grid-template-columns: 1fr;
                gap: 10px;
            }

          
        }
/* app/Layout/HomeLayout.razor.rz.scp.css */
.home-layout-container[b-drheo9iej9] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

/* app/Layout/LoginLayout.razor.rz.scp.css */
.login-layout-container[b-ax7zm0vdso] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* app/Layout/MainLayout.razor.rz.scp.css */
.page[b-d9uy81oxb1] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: transparent;
}

main[b-d9uy81oxb1] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: transparent;
}

.sidebar[b-d9uy81oxb1] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    z-index: 1000;
}

.top-row[b-d9uy81oxb1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.user-info[b-d9uy81oxb1] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.welcome-text[b-d9uy81oxb1] {
    color: #333;
    font-weight: 500;
}

.btn[b-d9uy81oxb1] {
    padding: 0.375rem 0.75rem;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    min-height: 2rem;
    min-width: 2rem;
    touch-action: manipulation;
}

.btn-outline-danger[b-d9uy81oxb1] {
    color: #dc3545;
    border-color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:hover[b-d9uy81oxb1] {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-sm[b-d9uy81oxb1] {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Login Layout - Full Screen */
.login-layout[b-d9uy81oxb1] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* MAUI Performance optimizations */
.page[b-d9uy81oxb1], main[b-d9uy81oxb1], .sidebar[b-d9uy81oxb1], .nav-scrollable[b-d9uy81oxb1] {
    contain: layout style paint;
}

/* Smooth scrolling for better MAUI performance */
.nav-scrollable[b-d9uy81oxb1], .content[b-d9uy81oxb1] {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Platform-specific optimizations */
@supports (-webkit-touch-callout: none) {
    /* iOS specific optimizations */
    .page[b-d9uy81oxb1] {
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-scrollable[b-d9uy81oxb1] {
        -webkit-transform: translateZ(0);
    }
}

@supports (display: -ms-flexbox) {
    /* Windows/Edge specific optimizations */
    .page[b-d9uy81oxb1] {
        display: -ms-flexbox;
        -ms-flex-direction: column;
    }
}

    .top-row[b-d9uy81oxb1]  a, .top-row[b-d9uy81oxb1]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-d9uy81oxb1]  a:hover, .top-row[b-d9uy81oxb1]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-d9uy81oxb1]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Mobile and small screen optimizations for MAUI */
@media (max-width: 768px) {
    .page[b-d9uy81oxb1] {
        flex-direction: column;
    }

    .top-row[b-d9uy81oxb1] {
        justify-content: space-between;
        padding: 0 0.5rem;
    }

    .top-row[b-d9uy81oxb1]  a, .top-row[b-d9uy81oxb1]  .btn-link {
        margin-left: 0;
    }

    .user-info[b-d9uy81oxb1] {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .welcome-text[b-d9uy81oxb1] {
        font-size: 0.8rem;
    }

    .btn[b-d9uy81oxb1] {
        min-height: 2.5rem;
        min-width: 2.5rem;
        font-size: 1rem;
    }

    .content[b-d9uy81oxb1] {
        padding: 0 !important;
        background-color: transparent;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .user-info[b-d9uy81oxb1] {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-end;
    }

    .welcome-text[b-d9uy81oxb1] {
        font-size: 0.75rem;
    }

    .btn[b-d9uy81oxb1] {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
}

/* Desktop and tablet landscape optimizations for MAUI */
@media (min-width: 769px) {
    .page[b-d9uy81oxb1] {
        flex-direction: row;
    }

    .sidebar[b-d9uy81oxb1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        transition: width 0.3s ease;
        flex-shrink: 0;
    }

    .sidebar.collapsed[b-d9uy81oxb1] {
        width: 80px;
    }

    .top-row[b-d9uy81oxb1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-d9uy81oxb1]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-d9uy81oxb1], article[b-d9uy81oxb1] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .content[b-d9uy81oxb1] {
        overflow-y: auto;
        flex: 1;
        min-height: 0;
        background-color: transparent;
        padding: 0 !important;
    }
}

/* Large desktop screens */
@media (min-width: 1200px) {
    .sidebar[b-d9uy81oxb1] {
        width: 280px;
    }

    .sidebar.collapsed[b-d9uy81oxb1] {
        width: 80px;
    }

    .content[b-d9uy81oxb1] {
        padding: 0 !important;
        background-color: transparent;
    }
}

#blazor-error-ui[b-d9uy81oxb1] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-d9uy81oxb1] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* app/Pages/ConnectRegister.razor.rz.scp.css */
/* Connect Register Page - Clean Simple Form Design */

.connect-register-container[b-am487kndio] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    background: #f5f5f5;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

/* Header - Matching Home.razor */
.top-header[b-am487kndio] {
    background: #1B2937;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(224, 224, 224, 0.8);
    position: relative;
    z-index: 1;
    color: #fff;
    flex-shrink: 0;
}

.header-content[b-am487kndio] {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.header-logo-section[b-am487kndio] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo[b-am487kndio] {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-title[b-am487kndio] {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    text-align: center;
}

/* Content Area - Wider layout */
.content-area[b-am487kndio] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 60px;
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Alert Banner */
.alert-banner[b-am487kndio] {
    width: 100%;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideDown-b-am487kndio 0.3s ease;
    width:1200px;
}

@keyframes slideDown-b-am487kndio {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-banner i[b-am487kndio] {
    font-size: 1.2rem;
}

.alert-error[b-am487kndio] {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

    .alert-error i[b-am487kndio] {
        color: #dc3545;
    }

.alert-success[b-am487kndio] {
    background: #efe;
    border: 1px solid #cfc;
    color: #363;
}

    .alert-success i[b-am487kndio] {
        color: #28a745;
    }

/* Simple Form - Wider fields */
.simple-form[b-am487kndio] {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form Field */
.form-field[b-am487kndio] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width:600px;
}

.form-label[b-am487kndio] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
    margin: 0;
    margin-top: 10px
}

.form-control[b-am487kndio] {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: #ffffff;
    color: #1f2937;
    transition: all 0.2s ease;
}

    .form-control:focus[b-am487kndio] {
        outline: none;
        border-color: #47856F;
        box-shadow: 0 0 0 3px rgba(71, 133, 111, 0.1);
    }

    .form-control:disabled[b-am487kndio] {
        background: #f9fafb;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .form-control[b-am487kndio]::placeholder {
        color: #9ca3af;
    }

/* Input Button Wrapper - For fields with action buttons */
.input-button-wrapper[b-am487kndio] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .input-button-wrapper .form-control[b-am487kndio] {
        flex: 1;
        padding-right: 14px;
    }

.btn-icon[b-am487kndio] {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 14px 16px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
}

    .btn-icon:hover:not(:disabled)[b-am487kndio] {
        background: #f9fafb;
        border-color: #47856F;
        color: #47856F;
    }

    .btn-icon:active:not(:disabled)[b-am487kndio] {
        background: #f3f4f6;
    }

    .btn-icon:disabled[b-am487kndio] {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .btn-icon i[b-am487kndio] {
        font-size: 1rem;
    }

/* Password Wrapper - Deprecated, now using input-button-wrapper */
.password-wrapper[b-am487kndio] {
    position: relative;
    display: flex;
    align-items: center;
}

    .password-wrapper .form-control[b-am487kndio] {
        padding-right: 45px;
    }

.password-toggle[b-am487kndio] {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

    .password-toggle:hover:not(:disabled)[b-am487kndio] {
        color: #47856F;
    }

    .password-toggle:disabled[b-am487kndio] {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .password-toggle i[b-am487kndio] {
        font-size: 1rem;
    }

/* Validation Error - Multiple approaches for Blazor WASM CSS isolation */
.validation-error[b-am487kndio] {
    color: #e53e3e !important;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* Target Blazor's ValidationMessage component output */
[b-am487kndio] .validation-message {
    color: #e53e3e !important;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* Form Actions */
.form-actions[b-am487kndio] {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

/* Buttons */
.btn[b-am487kndio] {
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    min-width: 120px;
}

    .btn:disabled[b-am487kndio] {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .btn:focus[b-am487kndio] {
        outline: 2px solid #47856F;
        outline-offset: 2px;
    }

/* Create/Connect Button */
.btn-create[b-am487kndio] {
    background: #47856F;
    color: #ffffff;
    border: 1px solid #47856F;
}

    .btn-create:hover:not(:disabled)[b-am487kndio] {
        background: #3d6757;
    }

    .btn-create:active:not(:disabled)[b-am487kndio] {
        background: #335544;
    }

    .btn-create:focus-visible[b-am487kndio] {
        outline: 2px solid #ffffff;
        outline-offset: 2px;
    }

/* Cancel Button */
.btn-cancel[b-am487kndio] {
    background: #ffffff;
    color: #4a5568;
    border: 1px solid #d1d5db;
}

    .btn-cancel:hover:not(:disabled)[b-am487kndio] {
        background: #f9fafb;
        border-color: #9ca3af;
    }

    .btn-cancel:active:not(:disabled)[b-am487kndio] {
        background: #f3f4f6;
    }

    .btn-cancel:focus-visible[b-am487kndio] {
        outline: 2px solid #47856F;
        outline-offset: 2px;
    }

/* Loading Spinner */
.fa-spinner[b-am487kndio] {
    animation: spin-b-am487kndio 1s linear infinite;
}

@keyframes spin-b-am487kndio {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-area[b-am487kndio] {
        padding: 40px 40px;
    }

    .simple-form[b-am487kndio] {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .content-area[b-am487kndio] {
        padding: 20px 20px;
    }

    .simple-form[b-am487kndio] {
        max-width: 100%;
        gap: 20px;
    }

    .form-control[b-am487kndio] {
        padding: 12px 16px;
    }

    .form-actions[b-am487kndio] {
        flex-direction: column;
    }

    .btn[b-am487kndio] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .content-area[b-am487kndio] {
        padding: 20px 15px;
    }

    .form-label[b-am487kndio] {
        font-size: 0.9rem;
    }

    .form-control[b-am487kndio] {
        font-size: 0.95rem;
        padding: 10px 14px;
    }

    .btn[b-am487kndio] {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Large Desktop */
@media (min-width: 1920px) {
    .content-area[b-am487kndio] {
        max-width: 1600px;
        padding: 60px 80px;
    }

    .simple-form[b-am487kndio] {
        max-width: 1400px;
    }

    .form-label[b-am487kndio] {
        font-size: 1rem;
    }

    .form-control[b-am487kndio] {
        font-size: 1.05rem;
        padding: 16px 20px;
    }

    .btn[b-am487kndio] {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* Accessibility */
.form-control:focus-visible[b-am487kndio],
.btn:focus-visible[b-am487kndio],
.password-toggle:focus-visible[b-am487kndio] {
    outline: 2px solid #47856F;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *[b-am487kndio],
    *[b-am487kndio]::before,
    *[b-am487kndio]::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
.required[b-am487kndio] {
    color: #e53e3e;
}
/* app/Pages/Home.razor.rz.scp.css */
.home-container[b-fhws4w05il] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    background: #ffffff;
    background-image: url('images/Component5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

.home-container[b-fhws4w05il]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.top-header[b-fhws4w05il] {
    background: #1B2937 ;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(224, 224, 224, 0.8);
    position: relative;
    z-index: 1;
    color:#fff;
    flex-shrink: 0;
}

.hamburger-menu[b-fhws4w05il] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
}

.hamburger-icon[b-fhws4w05il] {
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-icon[b-fhws4w05il]::before,
.hamburger-icon[b-fhws4w05il]::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 3px;
    background-color: #666;
    border-radius: 2px;
}

.hamburger-icon[b-fhws4w05il]::before {
    top: 0;
}

.hamburger-icon[b-fhws4w05il]::after {
    bottom: 0;
}

.hamburger-icon[b-fhws4w05il] {
    background-color: #666;
    height: 3px;
    width: 24px;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-content[b-fhws4w05il] {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.header-logo-section[b-fhws4w05il],
.header-logo-section2[b-fhws4w05il] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo[b-fhws4w05il],
.header-logo2[b-fhws4w05il] {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-brand[b-fhws4w05il] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
}

.header-title[b-fhws4w05il] {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    text-align: center;
}

.menu-buttons-container[b-fhws4w05il] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    width: 100%;
    margin: 40px auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.menu-column[b-fhws4w05il] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-button[b-fhws4w05il] {
    background: #101921;
    border: 1px solid #47856F;
    color: #f4f5f7;
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    touch-action: manipulation;
    user-select: none;
}

    .menu-button:hover[b-fhws4w05il] {
        background: #101921;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    }

.menu-button:active[b-fhws4w05il] {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.function-key[b-fhws4w05il] {
    font-weight: 700;
    margin-right: 10px;
    color: #ffcc00;
    font-size: 1em;
}

/* Large Desktop (1920px and above) */
@media (min-width: 1920px) {

    .menu-buttons-container[b-fhws4w05il] {
        max-width: 1400px;
        gap: 25px;
    }

}

/* Desktop (1200px to 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {


    .menu-buttons-container[b-fhws4w05il] {
        max-width: 1200px;
    }
}

/* Tablet Landscape (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    

    .menu-buttons-container[b-fhws4w05il] {
        max-width: 900px;
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-button[b-fhws4w05il] {
        font-size: 1.05rem;
        padding: 18px 28px;
    }
}

/* Tablet Portrait (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .home-container[b-fhws4w05il] {
        background-attachment: scroll;
    }

    .header-content[b-fhws4w05il] {
        flex-direction: column;
        text-align: center;
    }
    .menu-buttons-container[b-fhws4w05il] {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 15px;
        margin: 30px auto;
    }

}

/* Mobile Landscape (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .home-container[b-fhws4w05il] {
        background-attachment: scroll;
    }

    .top-header[b-fhws4w05il] {
        padding: 15px;
    }

    .header-content[b-fhws4w05il] {
        flex-direction: column;
        padding: 0 10px;
        text-align: center;
    }

    .header-logo[b-fhws4w05il],
    .header-logo2[b-fhws4w05il] {
        height: 35px;
    }

    .header-title[b-fhws4w05il] {
        font-size: 1.2rem;
    }

    .menu-buttons-container[b-fhws4w05il] {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 12px;
        margin: 25px auto;
        padding: 15px;
    }

  

    .function-key[b-fhws4w05il] {
        font-size: 0.95em;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .home-container[b-fhws4w05il] {
        background-attachment: scroll;
        background-size: cover;
    }

    .home-container[b-fhws4w05il]::before {
        background: rgba(255, 255, 255, 0.4);
    }

    .top-header[b-fhws4w05il] {
        padding: 12px 10px;
    }

    .header-content[b-fhws4w05il] {
        flex-direction: column;
        padding: 0 5px;
        gap: 10px;
        text-align: center;
    }

    .header-logo[b-fhws4w05il],
    .header-logo2[b-fhws4w05il] {
        height: 32px;
        max-width: 150px;
    }

    .header-brand[b-fhws4w05il] {
        font-size: 1rem;
    }

    .header-title[b-fhws4w05il] {
        font-size: 1.2rem;
    }

    .menu-buttons-container[b-fhws4w05il] {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 12px;
        margin: 20px auto;
        padding: 10px;
    }


    .function-key[b-fhws4w05il] {
        font-size: 0.9em;
        margin-right: 8px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .header-title[b-fhws4w05il] {
        font-size: 1rem;
    }


    .function-key[b-fhws4w05il] {
        font-size: 0.85em;
    }
}

/* Very Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .header-logo[b-fhws4w05il],
    .header-logo2[b-fhws4w05il] {
        height: 28px;
    }

    .header-title[b-fhws4w05il] {
        font-size: 0.95rem;
    }

    .menu-buttons-container[b-fhws4w05il] {
        gap: 10px;
        padding: 8px;
    }


    .function-key[b-fhws4w05il] {
        font-size: 0.8em;
        margin-right: 6px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .home-container[b-fhws4w05il] {
        background-attachment: scroll;
    }

    .top-header[b-fhws4w05il] {
        padding: 10px;
    }

    .header-title[b-fhws4w05il] {
        font-size: 1rem;
    }

    .menu-buttons-container[b-fhws4w05il] {
        margin: 15px auto;
        padding: 10px;
        gap: 10px;
    }

}
/* app/Pages/Login.razor.rz.scp.css */
/* Login Page Styles - Professional Design with Original Slideshow */
.login-screen-section[b-p0s3lf7bip] {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

    .login-screen-section .left-login-section[b-p0s3lf7bip] {
        width: 70%;
        position: relative;
    }

    .login-screen-section .right-login-section[b-p0s3lf7bip] {
        width: 30%;
        padding: 100px 40px;
    }

.login-form-container[b-p0s3lf7bip] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-direction: column;
}

.login-page-container[b-p0s3lf7bip] {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-form-container form[b-p0s3lf7bip] {
    width: 100%;
    border: 1px solid blue;
}
/* Background Slideshow - Full Page - Original Styling */
.background-slideshow[b-p0s3lf7bip] {
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

    .background-slideshow[b-p0s3lf7bip]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 2;
    }

    .background-slideshow .slide[b-p0s3lf7bip] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        z-index: 1;
    }

        .background-slideshow .slide.active[b-p0s3lf7bip] {
            opacity: 1;
            transform: scale(1);
        }

/* Slideshow Indicators - Original Design */
.slideshow-indicators[b-p0s3lf7bip] {
    /* position: absolute;*/
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator[b-p0s3lf7bip] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
    min-height: 10px;
    min-width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .indicator[b-p0s3lf7bip]::after {
        content: '';
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
    }

    .indicator.active[b-p0s3lf7bip]::after {
        background: rgba(255, 255, 255, 0.9);
    }

    .indicator:hover[b-p0s3lf7bip]::after {
        background: rgba(255, 255, 255, 0.7);
        transform: scale(1.1);
    }

/* Login Panel on Right Side - Enhanced Design */
.login-panel-right[b-p0s3lf7bip] {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 500px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100% );
    backdrop-filter: blur(30px);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    animation: slideInRight-b-p0s3lf7bip 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight-b-p0s3lf7bip {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}




.logo-section[b-p0s3lf7bip] {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
}

    .logo-section[b-p0s3lf7bip]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #5F9B85, transparent);
        border-radius: 2px;
    }

    .logo-section .logo[b-p0s3lf7bip] {
        width: 160px;
        max-width: 80%;
        height: auto;
        margin-bottom: 20px;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    .logo-section h2[b-p0s3lf7bip] {
        font-size: 1.15rem;
        font-weight: 400;
        color: #555;
        margin: 0;
        margin-top: 15px;
        letter-spacing: 0.8px;
        opacity: 0.9;
    }



.auth-form h4[b-p0s3lf7bip] {
    color: #2d3748;
    margin-bottom: 35px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

/* Form Groups - Enhanced with Floating Label Effect */
.form-group[b-p0s3lf7bip] {
    margin-bottom: 28px;
    position: relative;
}

    .form-group label[b-p0s3lf7bip] {
        display: block;
        margin-bottom: 10px;
        color: #4a5568;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }

.required[b-p0s3lf7bip] {
    color: #e53e3e;
    margin-left: 3px;
}

.password-input-wrapper[b-p0s3lf7bip] {
    position: relative;
}

.password-toggle[b-p0s3lf7bip] {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    border-radius: 6px;
}

    .password-toggle:hover[b-p0s3lf7bip] {
        color: #4a5568;
        background: rgba(0, 0, 0, 0.03);
    }

.form-control[b-p0s3lf7bip] {
    width: 100%;
    padding: 16px 50px 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    background: #ffffff;
    color: #2d3748;
    font-weight: 400;
}

    .form-control[b-p0s3lf7bip]::placeholder {
        color: #a0aec0;
        font-weight: 400;
    }

    .form-control:hover[b-p0s3lf7bip] {
        border-color: #cbd5e0;
    }

    .form-control:focus[b-p0s3lf7bip] {
        outline: none;
        border-color: #5F9B85;
        box-shadow: none;
        background: #ffffff;
        transform: translateY(-1px);
    }

    .form-control:disabled[b-p0s3lf7bip] {
        background-color: #f7fafc;
        cursor: not-allowed;
        opacity: 0.6;
    }

/* Button Styles - Modern and Professional */
.btn[b-p0s3lf7bip] {
    padding: 17px 34px;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    min-height: 56px;
    touch-action: manipulation;
    user-select: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary[b-p0s3lf7bip] {
    background: linear-gradient(135deg, #5F9B85 0%, #4a7c6b 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(95, 155, 133, 0.35);
    width: 100%;
}

    .btn-primary[b-p0s3lf7bip]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-primary:hover:not(:disabled)[b-p0s3lf7bip] {
        background: linear-gradient(135deg, #4a7c6b 0%, #3d6757 100%);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(95, 155, 133, 0.45);
    }

        .btn-primary:hover:not(:disabled)[b-p0s3lf7bip]::before {
            left: 100%;
        }

    .btn-primary:active:not(:disabled)[b-p0s3lf7bip] {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(95, 155, 133, 0.3);
    }

    .btn-primary:disabled[b-p0s3lf7bip] {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        box-shadow: 0 4px 15px rgba(95, 155, 133, 0.2);
    }

.mb-2[b-p0s3lf7bip] {
    margin-bottom: 0.5rem;
}

.text-center[b-p0s3lf7bip] {
    text-align: center;
}

/* Loading Spinner */
.loading-spinner[b-p0s3lf7bip] {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin-b-p0s3lf7bip 0.8s linear infinite;
}

@keyframes spin-b-p0s3lf7bip {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Error Messages - Enhanced Design */
.error-message[b-p0s3lf7bip] {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    color: #c53030;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #fc8181;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(197, 48, 48, 0.1);
    animation: shake-b-p0s3lf7bip 0.4s ease-in-out;
}

@keyframes shake-b-p0s3lf7bip {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.error-message[b-p0s3lf7bip]::before {
    content: '?';
    font-size: 1.2rem;
}

/* Validation Messages */
.validation-message[b-p0s3lf7bip] {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

/* Responsive Design - Large Desktop (1920px and above) */
@media (min-width: 1920px) {
    .login-panel-right[b-p0s3lf7bip] {
        width: 580px;
    }


    .logo-section .logo[b-p0s3lf7bip] {
        width: 180px;
    }

    .logo-section h2[b-p0s3lf7bip] {
        font-size: 1.25rem;
    }

    

    .form-control[b-p0s3lf7bip] {
        font-size: 1.1rem;
        padding: 18px 55px 18px 20px;
    }

    .btn[b-p0s3lf7bip] {
        font-size: 1.15rem;
        min-height: 60px;
    }
}

/* Desktop (1200px to 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .login-panel-right[b-p0s3lf7bip] {
        width: 520px;
    }
}

/* Laptop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .login-panel-right[b-p0s3lf7bip] {
        width: 460px;
    }


    .logo-section .logo[b-p0s3lf7bip] {
        width: 150px;
    }

    .logo-section h2[b-p0s3lf7bip] {
        font-size: 1.05rem;
    }

   
}

/* Tablet Landscape (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .login-panel-right[b-p0s3lf7bip] {
        width: 440px;
    }


    .logo-section .logo[b-p0s3lf7bip] {
        width: 145px;
    }

    .logo-section h2[b-p0s3lf7bip] {
        font-size: 1rem;
    }

    .auth-form h4[b-p0s3lf7bip] {
        margin-bottom: 30px;
    }

    .form-control[b-p0s3lf7bip] {
        padding: 15px 48px 15px 16px;
        font-size: 1rem;
    }

    .btn[b-p0s3lf7bip] {
        padding: 15px 30px;
        font-size: 1rem;
        min-height: 52px;
    }
}

/* Tablet Portrait (600px to 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .login-panel-right[b-p0s3lf7bip] {
        width: 100%;
        max-width: 520px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.25);
        border-radius: 16px;
        height: auto;
        max-height: 92vh;
        top: 4vh;
    }


    .logo-section .logo[b-p0s3lf7bip] {
        width: 140px;
    }

    .logo-section h2[b-p0s3lf7bip] {
        font-size: 1rem;
    }

    .auth-form h4[b-p0s3lf7bip] {
        margin-bottom: 28px;
    }

    .slideshow-indicators[b-p0s3lf7bip] {
        bottom: 30px;
    }
}

/* Mobile Landscape (576px to 599px) */
@media (min-width: 576px) and (max-width: 599px) {
    .login-panel-right[b-p0s3lf7bip] {
        width: 100%;
        position: fixed;
        bottom: 0;
        top: auto;
        right: 0;
        height: 78vh;
        max-height: 78vh;
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25);
        background: rgba(255, 255, 255, 0.98);
        z-index: 100;
        animation: slideInUp-b-p0s3lf7bip 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideInUp-b-p0s3lf7bip {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

        .logo-section .logo[b-p0s3lf7bip] {
            width: 135px;
            margin-bottom: 12px;
        }

        .logo-section h2[b-p0s3lf7bip] {
            font-size: 0.95rem;
        }

  

    .form-group[b-p0s3lf7bip] {
        margin-bottom: 22px;
    }

    .form-control[b-p0s3lf7bip] {
        padding: 14px 46px 14px 16px;
        font-size: 1rem;
        min-height: 50px;
    }

    .btn[b-p0s3lf7bip] {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 52px;
    }

    .slideshow-indicators[b-p0s3lf7bip] {
        bottom: calc(78vh + 20px);
    }

    .indicator[b-p0s3lf7bip] {
        min-height: 40px;
        min-width: 40px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .login-panel-right[b-p0s3lf7bip] {
        width: 100%;
        position: fixed;
        bottom: 0;
        top: auto;
        right: 0;
        height: 82vh;
        max-height: 82vh;
        border-radius: 28px 28px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25);
        background: rgba(255, 255, 255, 0.98);
        z-index: 100;
        animation: slideInUp-b-p0s3lf7bip 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .logo-section .logo[b-p0s3lf7bip] {
            width: 130px;
            margin-bottom: 12px;
        }

        .logo-section h2[b-p0s3lf7bip] {
            font-size: 0.9rem;
            margin-top: 10px;
        }

   

    .form-group[b-p0s3lf7bip] {
        margin-bottom: 20px;
    }

        .form-group label[b-p0s3lf7bip] {
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

    .form-control[b-p0s3lf7bip] {
        padding: 14px 44px 14px 16px;
        font-size: 0.95rem;
        min-height: 50px;
        border-width: 2px;
    }

    .password-toggle[b-p0s3lf7bip] {
        min-height: 42px;
        min-width: 42px;
        font-size: 17px;
    }

    .btn[b-p0s3lf7bip] {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-height: 50px;
    }

    .error-message[b-p0s3lf7bip] {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .slideshow-indicators[b-p0s3lf7bip] {
        bottom: calc(82vh + 18px);
        gap: 12px;
    }

    .indicator[b-p0s3lf7bip] {
        min-height: 40px;
        min-width: 40px;
    }

        .indicator[b-p0s3lf7bip]::after {
            width: 9px;
            height: 9px;
        }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .login-panel-right[b-p0s3lf7bip] {
        height: 84vh;
        border-radius: 24px 24px 0 0;
    }

          .logo-section .logo[b-p0s3lf7bip] {
            width: 120px;
            margin-bottom: 10px;
        }

        .logo-section h2[b-p0s3lf7bip] {
            font-size: 0.85rem;
        }

   

    .form-group[b-p0s3lf7bip] {
        margin-bottom: 18px;
    }

        .form-group label[b-p0s3lf7bip] {
            font-size: 0.9rem;
        }

    .form-control[b-p0s3lf7bip] {
        padding: 13px 42px 13px 14px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .btn[b-p0s3lf7bip] {
        padding: 13px 26px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .slideshow-indicators[b-p0s3lf7bip] {
        bottom: calc(84vh + 16px);
        gap: 10px;
    }

    .indicator[b-p0s3lf7bip] {
        min-height: 38px;
        min-width: 38px;
    }

        .indicator[b-p0s3lf7bip]::after {
            width: 8px;
            height: 8px;
        }
}

/* Very Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .login-panel-right[b-p0s3lf7bip] {
        height: 86vh;
    }



        .logo-section .logo[b-p0s3lf7bip] {
            width: 110px;
            margin-bottom: 8px;
        }

        .logo-section h2[b-p0s3lf7bip] {
            font-size: 0.8rem;
        }

  

    .form-group[b-p0s3lf7bip] {
        margin-bottom: 16px;
    }

        .form-group label[b-p0s3lf7bip] {
            font-size: 0.85rem;
            margin-bottom: 6px;
        }

    .form-control[b-p0s3lf7bip] {
        padding: 12px 40px 12px 13px;
        font-size: 0.85rem;
        min-height: 46px;
    }

    .btn[b-p0s3lf7bip] {
        padding: 12px 24px;
        font-size: 0.85rem;
        min-height: 46px;
    }

    .error-message[b-p0s3lf7bip] {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* Loading Indicator Styles */
.loading-indicator[b-p0s3lf7bip] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e6f7f3 0%, #d4efe9 100%);
    border: 1px solid #9fd5c3;
    border-radius: 10px;
    color: #2d5f4f;
    font-size: 0.95rem;
    font-weight: 500;
    animation: fadeIn-b-p0s3lf7bip 0.3s ease-in-out;
}

@keyframes fadeIn-b-p0s3lf7bip {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-indicator .spinner-border[b-p0s3lf7bip] {
    flex-shrink: 0;
}

/* Button Loading State Enhancements */
.btn-primary .spinner-border[b-p0s3lf7bip] {
    width: 1.1rem;
    height: 1.1rem;
    border-width: 2px;
    animation: spin-b-p0s3lf7bip 0.7s linear infinite;
}

.btn-primary:disabled[b-p0s3lf7bip] {
    background: linear-gradient(135deg, #6eaa94 0%, #5a8978 100%);
    cursor: progress;
}

@media (max-width: 575px) {
    .loading-indicator[b-p0s3lf7bip] {
        font-size: 0.875rem;
        padding: 14px 18px;
    }
}

.slideshow-indicators[b-p0s3lf7bip] {
    bottom: calc(86vh + 14px);
    gap: 8px;
}

.indicator[b-p0s3lf7bip] {
    min-height: 36px;
    min-width: 36px;
}

    .indicator[b-p0s3lf7bip]::after {
        width: 7px;
        height: 7px;
    }

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .login-panel-right[b-p0s3lf7bip] {
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
    }

    .logo-section[b-p0s3lf7bip] {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

        .logo-section .logo[b-p0s3lf7bip] {
            width: 100px;
            margin-bottom: 8px;
        }

        .logo-section h2[b-p0s3lf7bip] {
            font-size: 0.85rem;
        }

   

    .form-group[b-p0s3lf7bip] {
        margin-bottom: 16px;
    }

    .form-control[b-p0s3lf7bip] {
        padding: 12px 42px 12px 14px;
        min-height: 44px;
    }

    .btn[b-p0s3lf7bip] {
        padding: 12px 24px;
        min-height: 44px;
    }

    .slideshow-indicators[b-p0s3lf7bip] {
        bottom: 18px;
        gap: 10px;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .form-control[b-p0s3lf7bip],
    .btn[b-p0s3lf7bip] {
        border-width: 0.5px;
    }
}

/* Smooth scrollbar for login panel */
.login-panel-right[b-p0s3lf7bip]::-webkit-scrollbar {
    width: 8px;
}

.login-panel-right[b-p0s3lf7bip]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.login-panel-right[b-p0s3lf7bip]::-webkit-scrollbar-thumb {
    background: rgba(95, 155, 133, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

    .login-panel-right[b-p0s3lf7bip]::-webkit-scrollbar-thumb:hover {
        background: rgba(95, 155, 133, 0.5);
    }

/* Focus visible for accessibility */
.form-control:focus-visible[b-p0s3lf7bip],
.btn:focus-visible[b-p0s3lf7bip],
.password-toggle:focus-visible[b-p0s3lf7bip],
.indicator:focus-visible[b-p0s3lf7bip] {
    outline: none;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *[b-p0s3lf7bip],
    *[b-p0s3lf7bip]::before,
    *[b-p0s3lf7bip]::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media(max-width:1200px) {
    .login-screen-section .left-login-section[b-p0s3lf7bip] {
        width: 50%;
        position: relative;
    }

    .login-screen-section .right-login-section[b-p0s3lf7bip] {
        width: 50%;
    }
}

@media(max-width:1024px) {
    .login-screen-section[b-p0s3lf7bip] {
        flex-direction: column;
    }

        .login-screen-section .left-login-section[b-p0s3lf7bip],
        .login-screen-section .right-login-section[b-p0s3lf7bip] {
            width: 100%;
        }

        .login-screen-section .right-login-section[b-p0s3lf7bip] {
            display: flex;
            align-content: center;
            justify-content: center;
            width: 100%;
            height: 100vh;
        }

        .login-screen-section .left-login-section[b-p0s3lf7bip] {
            display: none;
        }
}

@media(max-width:767px) {

    .login-screen-section .right-login-section[b-p0s3lf7bip] {
        padding: 80px 24px;
    }
}
/* app/Pages/ProcessSales.razor.rz.scp.css */
/* POS System Styling - Fully Responsive Design */

/*.pos-container {
    color: #ffffff;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    contain: layout style paint;
    -webkit-overflow-scrolling: touch;
}*/

/* Header Section */
/*.pos-header {
    background-color: #1B2937;
    padding: 10px 16px;
    border-bottom: 1px solid #1B2937;
    flex-shrink: 0;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0;
    gap: 20px;
    flex-wrap: wrap;
}*/

/* Header Logo Section (Left) */
/*.header-logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.header-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}*/


/* Header Info Section (Right) */
/*.header-info-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.date-time-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.date-display {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.time-display {
    font-size: 12px;
    color: #e0e0e0;
}

.salesperson-selector {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.salesperson-label {
    font-size: 11px;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salesperson-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-height: 32px;
}

    .salesperson-dropdown:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

.salesperson-name {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.salesperson-dropdown i {
    font-size: 10px;
    color: #e0e0e0;
}

.search-box {
    position: relative;
}

.search-icon,
.search-icon-right {
    position: absolute;
    color: #6c757d;
    font-size: 14px;
    z-index: 2;
    pointer-events: auto;
    transition: color 0.2s ease;
}


.icon-title {
    font-size: 12px;
    font-weight: 400;
}

.search-input::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.action-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
}

.btn-action-blue {
    background-color: #1B2937;
    border: none;
    color: #ffffff;
    border: 1px solid #f2f2f2;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    touch-action: manipulation;
    white-space: nowrap;
    min-height: 36px;
}

    .btn-action-blue:hover {
        background-color: #1B2937;
    }*/



/* Main Content */
/*.pos-main-content {
    display: flex;
    flex: 1;
    flex-direction: row;
    max-width: 100%;
    margin: 0;
    padding: 10px 16px;
    gap: 15px;
    overflow: hidden;
    min-height: 0;
    background: #223444;
}*/

/* Left Column - Customer Info and Sales List */
/*.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0;
    order: 1;
}*/

/* Customer Info Section */
/*.customer-info-section {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.header-item-scan-section .search-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-box input {
    font-size: 12px;
    border: 1px solid #d2d2d2;
    background: #fff;
    height: 36px;
    padding: 8px 50px 8px 10px;
    border-radius: 4px;
    width: 100%;
}

.header-item-scan-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.section-title {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.btn-customer-action {
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #000;
    font-size: 12px;
    background-color: rgba(242, 242, 242, 0.6);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    gap: 6px;
}

    .btn-customer-action svg {
        width: 14px;
        height: 14px;
    }

.header-item-scan-section .action-buttons {
    display: flex;
    justify-content: space-between;
}

    .header-item-scan-section .action-buttons button {
        border: 1px solid rgba(242, 242, 242, 0.6);
        background: rgba(51,78,102,1);
        color: #f4f5f7;
        font-size: 12px;
        height: 36px;
        padding: 8px 25px;
        border-radius: 8px;
        font-weight: 400;
        display: inline-flex;
        align-items: center;
    }

        .header-item-scan-section .action-buttons button:hover {
            background: rgba(51,78,102,0.5);
        }

.search-icon {
    background: #7699BC;
    height: 36px;
    padding: 8px 12px;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 4px;
}

.customer-info-section .search-box {
    background: #ffffff;
}


.customer-info-section .section-title {
    color: #000;
}

.customer-info-section .search-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: calc(100% - 150px);
}

.customer-info-section .search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 4px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    width: calc(100% - 480px);
}


.sales-list-section {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #1B2937;
    min-height: 0;
}

.items-table-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: auto;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #bdc3c7;
}

.items-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    font-weight: normal;
    min-width: 800px;
}

    .items-table th {
        background-color: #e6e6e6;
        color: #0d0d0d;
        padding: 4px 8px;
        font-size: 12px;
        text-align: left;
        font-weight: 500;
        border-bottom: 1px solid #bdc3c7;
        position: sticky;
        top: 0;
        z-index: 10;
        white-space: nowrap;
    }

    .items-table td {
        padding: 4px 8px;
        border-bottom: 1px solid #e6e6e6;
        color: #0d0d0d;
        font-size: 12px;
        font-weight: normal;
    }

    .items-table tbody tr:hover {
        background-color: #f8f9fa;
    }

    .items-table tbody tr.discounted-item {
        background-color: #e8f4fd;
    }

.item-description {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.discount-label {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    width: fit-content;
}

.empty-cart {
    text-align: center;
    padding: 30px;
    color: #7f8c8d;
    font-style: italic;
}*/
/* Right Sidebar */
/*.pos-sidebar {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #223444;
    order: 2;
}

.totals-section {
    background-color: #436689;
    border-radius: 0px;
    padding: 12px;
    color: #fff;
}

.totals-breakdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 12px;
    color: #fff;
}

.sale-total-container {
    border-top: 1px solid #ffff;
    padding-top: 10px;
    color: #fff;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
}


.sale-total-amount {
    text-align: right;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0px 0px 20px;
}

.quote-buttons-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.btn-tender {
    background: rgba(77, 144, 120, 1);
    border: none;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
    touch-action: manipulation;
}

    .btn-tender svg {
        width: 12px;
    }

    .btn-tender:hover:not(:disabled) {
        background: rgba(77, 144, 120, 0.75);
        transform: translateY(-1px);
    }

    .btn-tender:disabled {
        background: rgba(77, 144, 120, 0.5);
        cursor: not-allowed;
    }

.btn-sidebar-secondary {
    background: rgba(51, 78, 102, 0.7);
    border: 2px solid #7699bc;
    color: #efefef;
    padding: 4px 25px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
}

    .btn-sidebar-secondary .icon-section .icon-title {
        font-size: 10px;
    }

    .btn-sidebar-secondary .icon-section svg {
        width: 12px;
        height: 12px;
    }

    .btn-sidebar-secondary:hover {
        background-color: rgba(46,71,92, 0.5);
    }


.quote-buttons-row .btn-sidebar-secondary {
    flex: 1;
}

.btn-sidebar-help {
    background: rgba(223, 159, 32, 0.08);
    border: 1px solid #DF9F20;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    min-height: 40px;
}

    .btn-sidebar-help:hover {
        background: rgba(223, 159, 32, 0.05);
    }


    .btn-sidebar-help small {
        font-size: 10px;
        opacity: 0.9;
        margin-left: auto;
    }*/
/* Bottom Action Buttons */
/*.bottom-actions {
    background-color: #1B2937;
    padding: 10px 16px;
    border-top: 1px solid #1B2937;
    flex-shrink: 0;
}

button:focus {
    outline: 0;
    outline-offset: 0;
}

.action-grid {
    width: 98vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    padding-right: 5px;
}

    .action-grid button {
        gap: 6px;
        text-align: left;
        color: #f4f5f7;
        font-size: 12px;
        color: #ffffff;
        padding: 8px 15px;
        border-radius: 8px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        background: rgba(27,41,55, 1 );
        border: 1px solid transparent;
    }

.icon-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .icon-section svg {
        width: 14px;
        height: 14px;
    }

    .icon-section .icon-title {
        font-size: 10px;
    }

.action-grid .btn-action-green {
    border: 1px solid #47856f;
    background: rgba(77, 144, 120, 0.1);
}

.action-grid .btn-action-yellow {
    border: 1px solid #DF9F20;
    background: rgba(223, 159, 32, 0.08);
}

.action-grid .btn-action-red {
    border: 1px solid #BF5A64;
    background: rgba(248, 68, 86, 0.08);
}

.action-grid .btn-action-blue {
    border: 1px solid #7699bc;
    background: rgba(34, 51, 68, 0.2);
}



.btn-action-green i {
    font-size: 16px;
    color: #27ae60;
}

.btn-action-yellow i {
    font-size: 16px;
    color: #DF9F20;
}

.btn-action-red i {
    font-size: 16px;
    color: #e74c3c;
}

.bottom-actions .btn-action-blue i {
    font-size: 16px;
    color: #3498db;
}*/
/* Status Messages */
/*.status-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 18px;
    border-radius: 6px;
    font-weight: 500;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    .status-message.success {
        background-color: #27ae60;
        color: #ffffff;
        border-left: 4px solid #2ecc71;
    }

    .status-message.error {
        background-color: #e74c3c;
        color: #ffffff;
        border-left: 4px solid #c0392b;
    }

.close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    min-height: 24px;
    min-width: 24px;
}

    .close-btn:hover {
        opacity: 0.8;
    }*/
/* Scrollbar Styling */
/*.items-table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.items-table-container::-webkit-scrollbar-track {
    background: #ecf0f1;
    border-radius: 4px;
}

.items-table-container::-webkit-scrollbar-thumb {
    background: #bdc3c7;
    border-radius: 4px;
}

    .items-table-container::-webkit-scrollbar-thumb:hover {
        background: #95a5a6;
    }*/
/* Large Desktop (1920px and above) */
/*@media (min-width: 1920px) {
    .header-logo-img {
        height: 60px;
    }



    .items-table {
        font-size: 13px;
    }

    .action-grid {
        max-width: 1400px;
        gap: 12px;
    }
}*/
/* Desktop (1200px to 1919px) */
/*@media (min-width: 1200px) and (max-width: 1919px) {
    .header-logo-img {
        height: 50px;
    }
}*/
/* Laptop (992px to 1199px) */
/*@media (min-width: 992px) and (max-width: 1199px) {
    .header-logo-img {
        height: 45px;
    }


    .items-table {
        font-size: 11px;
    }

    .action-grid {
        gap: 8px;
    }
}*/
/* Tablet Landscape (768px to 991px) */
/*@media (min-width: 768px) and (max-width: 991px) {

    .header-row {
        gap: 15px;
        flex-wrap: nowrap
    }

    .header-item-scan-section .action-buttons button {
        padding: 8px 12px;
    }

    .header-logo-img {
        height: 40px;
    }

    .date-display {
        font-size: 12px;
    }

    .pos-main-content {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }

    .pos-sidebar {
        width: 100%;
        flex-direction: row;
        gap: 12px;
    }

    .totals-section {
        flex: 1;
    }

    .sidebar-actions {
        flex: 0 0 250px;
    }

    .action-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 8px;
    }

    .items-table {
        font-size: 11px;
    }
}*/
/* Tablet Portrait (600px to 767px) */
/*@media (min-width: 600px) and (max-width: 767px) {



    .header-row {
        flex-direction: column;
        gap: 12px;
    }

    .header-logo-img {
        height: 38px;
    }



    .search-box {
        max-width: 100%;
    }

    .action-buttons {
        flex-direction: row;
        justify-content: space-between;
    }

    .pos-main-content {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }



    .pos-sidebar {
        width: 100%;
        flex-direction: column;
    }

    .action-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 8px;
    }
}*/
/* Mobile Landscape (480px to 599px) */
/*@media (min-width: 480px) and (max-width: 599px) {



    .header-row {
        flex-direction: column;
        gap: 10px;
    }

    .header-logo-img {
        height: 35px;
    }*/

    /*.action-buttons {
    flex-direction: column;
    gap: 6px;
}*/

    /*.btn-action-blue,
    .btn-customer-action {
        width: 100%;
        justify-content: center;
    }

    .pos-main-content {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }



    .items-table {
        font-size: 10px;
        min-width: 600px;
    }



    .pos-sidebar {
        width: 100%;
    }

    .totals-section {
        padding: 10px;
    }

    .total-line {
        font-size: 10px;
    }

    .action-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 6px;
    }
}*/




/* Focus states for accessibility */


/*.search-input:focus {
    outline: none;
}*/
/* Print styles */
/*@media print {
    .pos-container {
        background-color: white;
        color: black;
    }

    .bottom-actions {
        display: none;
    }

    .pos-header,
    .sidebar-actions {
        display: none;
    }
}*/
/* Clickable rows */
/*.items-table tbody .data-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}*/
    /* Hover */
    /*.items-table tbody .data-row:hover > td {
        background-color: #f8f9fa;
    }*/
    /* Discounted item */
    /*.items-table tbody .data-row.discounted-item > td {
        background-color: #e8f4fd;
    }*/
    /* Selected row (HIGHEST PRIORITY) */
    /*.items-table tbody .data-row.selected > td {
        background-color: #dde6ee;
        color: #0d0d0d;
    }

@media(min-width:990px) and (max-width:1024px) {
    .customer-info-section .section-title {
        min-width: 100px;
    }

    .customer-info-section .search-container {
        flex-direction: column;
        width: 100%;
    }

    .customer-info-section .search-box {
        width: 100%;
    }
}

@media(min-width:1025px) {
    .header-row {
        justify-content: space-between;
    }

    .header-item-scan-section {
        width: 420px;
    }

    .left-column {
        width: calc(100% - 350px);
    }
}

@media(max-width:1023px) {
    .customer-info-section .section-title {
        min-width: 100px;
    }

    .customer-info-section .search-container {
        flex-direction: column;
        width: 100%;
    }

    .customer-info-section .search-box {
        width: 100%;
    }
}

@media(max-width:640px) {
    .customer-info-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-info-section {
        flex-direction: row;
        align-items: center;
    }
}*/

/* Mobile Portrait (up to 479px) */
/*@media (max-width: 479px) {



    .header-row {
        flex-direction: column;
        gap: 8px;
    }

    .header-logo-img {
        height: 32px;
    }


    .date-display {
        font-size: 11px;
    }

    .salesperson-name {
        font-size: 11px;
    }



    .search-box {
        max-width: 100%;
        min-width: 100%;
    }

    .search-input {
        padding: 8px 32px 8px 10px;
        font-size: 12px;
    }

    .action-buttons {
        gap: 5px;
    }

    .left-column .search-container .action-buttons {
        flex-direction: row;
    }

        .left-column .search-container .action-buttons button {
            width: calc(100% / 3 - 6px);
        }

    .pos-main-content {
        flex-direction: column;
        padding: 6px;
        gap: 6px;
    }


    .customer-info-section .action-buttons {
        flex-direction: column;
        width: 100%;
    }



    .items-table {
        font-size: 9px;
        min-width: 550px;
    }

        .items-table th,
        .items-table td {
            padding: 6px 3px;
        }

    .empty-cart {
        padding: 20px;
        font-size: 12px;
    }

    .pos-sidebar {
        width: 100%;
        gap: 8px;
    }

    .totals-section {
        padding: 8px;
    }

    .total-line {
        font-size: 10px;
    }

    .sale-total-label,
    .sale-total-amount {
        font-size: 11px;
    }



    .btn-sidebar-secondary,
    .btn-sidebar-help {
        padding: 8px 10px;
        font-size: 11px;
        min-height: 38px;
    }



    .action-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 5px;
    }

    .status-message {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 14px;
        font-size: 12px;
    }
}*/
