/* _content/Trader.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* =======================[ Page Layout ]======================= */
.page[b-pgb6bes6a7] {
    display: flex;
    width: 100%;
    min-width: 900px;
    flex-direction: column;
}

/* =======================[ Header ]======================= */
.header[b-pgb6bes6a7] {
    display: grid;
    grid-template-columns: 160px max-content auto max-content max-content;
    border-bottom: solid #bbb8b8 1px;
    padding: 6px 10px 6px 10px;
}
.header > div[b-pgb6bes6a7] { margin: auto; }

/* =======================[ Navigation Links ]======================= */
.custom-link[b-pgb6bes6a7] {
    color: #0d6efd;
    text-decoration: underline;
    margin: 0 10px;
    font-weight: bold;
}
.custom-link:hover[b-pgb6bes6a7] {
    text-decoration: none;
    cursor: pointer;
}
.custom-link.active[b-pgb6bes6a7] {
    font-weight: bold;
    color: inherit;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/* =======================[ Logout Modal ]======================= */
#logout-modal[b-pgb6bes6a7] {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
}
#logout-modal-content[b-pgb6bes6a7] {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 15px;
    border: 1px solid #888;
    width: 15%;
    height: fit-content;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}
#cancel-logout[b-pgb6bes6a7], #logout-button[b-pgb6bes6a7] {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
#cancel-logout:hover[b-pgb6bes6a7],
#logout-button:hover[b-pgb6bes6a7] {
    opacity: 0.8;
}

/* =======================[ Responsive (<=900px) ]======================= */
@media (max-width: 900px) {
    html[b-pgb6bes6a7], body[b-pgb6bes6a7] {
        overflow-x: auto;
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 0;
    }
    .page[b-pgb6bes6a7],
    .page-scalable[b-pgb6bes6a7] {
        transform-origin: top left;
        width: 900px;
    }
}

/* =======================[ Error UI Banner ]======================= */
#blazor-error-ui[b-pgb6bes6a7] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .dismiss[b-pgb6bes6a7] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/Trader.Web/Components/Pages/Accounts/Accounts.razor.rz.scp.css */
/* =======================[ Layout & Grid ]======================= */
.portfolio-grid[b-gdhrse1u03] {
    display: grid;
    grid-template-columns: 15% 85%;
    grid-template-rows: 10% 90%;
    width: 100%;
    height: 100%;
}

/* =======================[ Sidebar (Accounts) ]======================= */
.side[b-gdhrse1u03] {
    grid-row: 1 / span 2;
    grid-column: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 10px;
    background: whitesmoke;
}

.accounts-wrapper[b-gdhrse1u03] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 10px;
}

.accounts-search[b-gdhrse1u03] {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.search-input-container[b-gdhrse1u03] {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-input-container input[b-gdhrse1u03] {
    width: 100%;
    padding: 5px;
    border: 1px solid lightgray;
    border-radius: 3px;
    font-weight: bold;
}

.search-btn[b-gdhrse1u03] {
    position: absolute;
    right: 5px;
    padding: 5px;
    background: none;
    border: none;
    color: gray;
    font-size: 18px;
    cursor: pointer;
}

.search-btn:hover[b-gdhrse1u03] {
    color: black;
}

/* =======================[ Accounts Table ]======================= */
.accounts-container[b-gdhrse1u03] {
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
}

.accounts-table[b-gdhrse1u03] {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
}

.accounts-table th[b-gdhrse1u03],
.accounts-table td[b-gdhrse1u03] {
    border-bottom: 1px solid lightgray;
    text-align: center;
}

.accounts-table th[b-gdhrse1u03] {
    font-weight: bold;
    border: none;
    border-bottom: 1px solid lightgray;
}

.accounts-table tr.selected-row[b-gdhrse1u03] {
    background: #186fcc;
    color: white;
}

.accounts-table tr td:hover[b-gdhrse1u03] {
    background: gray;
    color: white;
    cursor: pointer;
}

.accounts-table td:first-child[b-gdhrse1u03],
.accounts-table th:first-child[b-gdhrse1u03],
.accounts-table td:last-child[b-gdhrse1u03],
.accounts-table th:last-child[b-gdhrse1u03] {
    border-left: none;
    border-right: none;
}

.accounts-table button[b-gdhrse1u03] {
    width: 100%;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    cursor: pointer;
}

.accounts-table button:hover[b-gdhrse1u03] {
    background: #eaeaea;
}

/* =======================[ Portfolio Header Section ]======================= */
.portfolio-header[b-gdhrse1u03] {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
    padding: 0 5px 0 10px;
    overflow: auto;
    text-wrap: nowrap;
}

.portfolio-header div[b-gdhrse1u03] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 50px;
    border: 1px solid lightgray;
}

.portfolio-header div label[b-gdhrse1u03] {
    font-size: smaller;
    color: black;
}

.portfolio-header div span[b-gdhrse1u03] {
    font-weight: bold;
    text-align: left;
}

.portfolio-header button[b-gdhrse1u03] {
    padding: 5px 10px;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

/* =======================[ Positions (Portfolio Table) ]======================= */
.positions[b-gdhrse1u03] {
    grid-row: 2;
    grid-column: 2;
    padding: 0 5px 0 10px;
}

.table-wrapper[b-gdhrse1u03] {
    overflow-y: auto;
    max-height: 100%;
    height: 100vh;
    border: 1px solid lightgray;
}

.portfolio-table[b-gdhrse1u03] {
    width: 100%;
    border-collapse: collapse;
}

.portfolio-table th[b-gdhrse1u03],
.portfolio-table td[b-gdhrse1u03] {
    text-align: right;
    white-space: nowrap;
}

.portfolio-table th:first-child[b-gdhrse1u03],
.portfolio-table td:first-child[b-gdhrse1u03] {
    text-align: left;
    border-left: none;
    border-right: none;
}

.portfolio-table th:last-child[b-gdhrse1u03],
.portfolio-table td:last-child[b-gdhrse1u03] {
    border-right: none;
    border-left: none;
}

.portfolio-table thead th[b-gdhrse1u03] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    border-bottom: 1px solid lightgray;
    border-top: none;
}

.portfolio-table tbody tr:hover[b-gdhrse1u03] {
    background: lightgray;
    cursor: pointer;
}

.portfolio-table tr:last-child th[b-gdhrse1u03],
.portfolio-table tr:last-child td[b-gdhrse1u03] {
    border-bottom: none;
}

.has-less-rows tr:last-child td[b-gdhrse1u03] {
    border-bottom: 1px solid lightgray;
}

.no-data-row td[b-gdhrse1u03] {
    height: 130px;
    font-weight: bold;
    color: gray;
    vertical-align: middle;
    border: none;
}

/* =======================[ Spinner (Loading Indicator) ]======================= */
.spinner-container[b-gdhrse1u03] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.spinner[b-gdhrse1u03] {
    margin: 20% auto;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.2);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin-b-gdhrse1u03 1s linear infinite;
    display: inline-block;
}

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

/* =======================[ Miscellaneous ]======================= */
i[b-gdhrse1u03] {
    font-size: medium;
}
/* _content/Trader.Web/Components/Pages/Accounts/BlockSaleOrderBook.razor.rz.scp.css */
body[b-ksblps4i0l] {
}
/* _content/Trader.Web/Components/Pages/Accounts/EmailVerification.razor.rz.scp.css */
.details-container[b-i66fqhd8fa] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    background-color: #f9f9f9;
    overflow: auto;
    padding: 0 10px;
    z-index: 1;
}
.profile-image[b-i66fqhd8fa] {
    height: 54px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: none;
    align-items: center;
    background: none;
    margin-bottom: 18px;

}
.details-card[b-i66fqhd8fa] {
    width: 340px;
    max-width: 96vw;
    min-width: 280px;
    border-radius: 12px;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0 2px 24px rgba(0,0,0,0.10);
    padding: 0 20px 30px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-header[b-i66fqhd8fa] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-radius: 12px 12px 0 0;
    padding: 24px 0 16px 0;
    min-height: 50px;
    text-align: center;
}

.card-header h3[b-i66fqhd8fa] {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 100%;
}

.form-content[b-i66fqhd8fa] {
    padding: 0 0 10px 0;
}

.form-group[b-i66fqhd8fa] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.form-control[b-i66fqhd8fa] {
    width: 100%;
    max-width: 180px;
    padding: 9px 11px;
    font-size: 1.13rem;
    border: 1px solid #bbb;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 4px;
    background: #f8f8f8;
    transition: border-color 0.15s;
    text-align: center;
}
.form-control:focus[b-i66fqhd8fa] {
    border-color: #1976d2;
    outline: none;
    background: #fff;
}

.form-actions-row[b-i66fqhd8fa] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 14px;
    gap: 10px;
    width: 100%;
}

.verify-btn[b-i66fqhd8fa],
.small-btn[b-i66fqhd8fa] {
    min-width: 95px;
    padding: 0.34rem 1.12rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background: #1976d2;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.verify-btn:disabled[b-i66fqhd8fa],
.small-btn:disabled[b-i66fqhd8fa] {
    background: #b6b6b6;
    cursor: not-allowed;
}
.small-btn[b-i66fqhd8fa] {
    background: #757575;
    min-width: 90px;
    padding: 0.34rem 1.1rem;
}

.verification-error[b-i66fqhd8fa] {
    color: #c00;
    font-size: 1.01rem;
    font-weight: 500;
    margin-top: 10px;
}

.verification-success[b-i66fqhd8fa] {
    color: #198754;
    font-size: 1.01rem;
    font-weight: 500;
    margin-top: 10px;
}

/* Input validation highlight */
input.input-validation-error[b-i66fqhd8fa],
.form-control.input-validation-error[b-i66fqhd8fa] {
    border: 1.5px solid #dc3545 !important;
    background-color: #fff0f3 !important;
    color: #dc3545;
    box-shadow: none;
}
.validation-message[b-i66fqhd8fa] {
    color: #dc3545;
    font-size: 0.99rem;
    margin-top: 2px;
    width: 100%;
    text-align: left;
    padding-left: 3px;
}

.details-container .alert[b-i66fqhd8fa] {
    width: 340px;                /* match .details-card width */
    max-width: 96vw;
    margin: 14px auto 0 auto;
    border-radius: 6px;
    text-align: center;
    padding: 12px 10px;
    font-size: 1rem;
    box-sizing: border-box;
    display: block;
}
.details-container .alert-danger[b-i66fqhd8fa] {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}
.details-container .alert-success[b-i66fqhd8fa] {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

@media (max-width: 599px) {
    .details-card[b-i66fqhd8fa] {
        width: 99vw;
        max-width: 99vw;
        padding: 0 4vw 20px 4vw;
        border-radius: 13px;
    }
    .card-header[b-i66fqhd8fa] {
        padding: 14px 0 10px 0;
    }
    .form-control[b-i66fqhd8fa] {
        font-size: 1.08rem;
    }
    .details-container .alert[b-i66fqhd8fa] {
        width: 95vw;
    }
}
/* _content/Trader.Web/Components/Pages/Accounts/OrderBook.razor.rz.scp.css */
/* =======================[ Order Book Container ]======================= */
.orderbook-container[b-37t74r97qr] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 10px;
}

/* =======================[ Table Wrapper ]======================= */
.table-wrapper[b-37t74r97qr] {
    overflow-y: auto;
    max-height: 100%;
    height: 100vh;
    border: 1px solid lightgray;
}

/* =======================[ Order Book Table ]======================= */
.orderbook-table[b-37t74r97qr] {
    width: 100%;
    border-collapse: collapse;
}

.orderbook-table thead th[b-37t74r97qr] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    border-top: none;
}

.orderbook-table tbody tr:hover[b-37t74r97qr] {
    background: lightgray;
    cursor: pointer;
}

.orderbook-table th:first-child[b-37t74r97qr],
.orderbook-table td:first-child[b-37t74r97qr],
.orderbook-table th:last-child[b-37t74r97qr],
.orderbook-table td:last-child[b-37t74r97qr] {
    border-left: none;
    border-right: none;
}

.orderbook-table tr:last-child th[b-37t74r97qr],
.orderbook-table tr:last-child td[b-37t74r97qr] {
    border-bottom: none;
}

.has-less-rows tr:last-child td[b-37t74r97qr] {
    border-bottom: 1px solid whitesmoke;
}

/* =======================[ Order Status & Appearance ]======================= */
.lightgray-orders[b-37t74r97qr] {
    color: lightgray;
    text-decoration: line-through;
}

/* =======================[ No Data & Loading Rows ]======================= */
.orderbook-table tbody .no-data-row td[b-37t74r97qr],
.orderbook-table tbody .loading-row td[b-37t74r97qr] {
    height: 450px;
    font-weight: bold;
    color: gray;
    vertical-align: middle;
    border: none;
}

/* =======================[ Spinner (Loading Indicator) ]======================= */
.spinner[b-37t74r97qr] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.2);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin-b-37t74r97qr 1s linear infinite;
    display: inline-block;
}

@keyframes spin-b-37t74r97qr {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
/* _content/Trader.Web/Components/Pages/Accounts/ParkOrder.razor.rz.scp.css */
body[b-yi4p16eppc] {
}
/* _content/Trader.Web/Components/Pages/Accounts/Registration.razor.rz.scp.css */
/* ===== Registration page — same look as Basic/Regular forms ===== */

h3[b-3b51yw8fkf] {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.card-header h3[b-3b51yw8fkf] {
    font-size: 1.22rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 100%;
    display: block;
}

h4[b-3b51yw8fkf] { font-weight: bold; }

.details-container[b-3b51yw8fkf] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff; /* optional, keep it clean */
    overflow: auto;
    padding: 0 10px; /* small horizontal margin on mobile */
}



.details-card[b-3b51yw8fkf] {
    width: 30%;
    min-width: 300px;
    margin: 10px auto;
    padding: 0 16px 28px 16px;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
    max-height: 96vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
/* Country code dropdown – tight and consistent with input */
.country-code-select[b-3b51yw8fkf] {
    max-width: 64px !important;   /* Tighten further if needed */
    min-width: 58px;
    padding: 7px 6px 7px 8px;     /* Match .form-control vertical padding */
    font-size: 1.12rem;
    border: 1px solid #bbb;
    border-radius: 5px;
    background: #f8f8f8;
    height: 38px;                 /* Match .form-control height if you adjust font-size */
    box-sizing: border-box;
    margin-right: 5px;
    text-align: center;
    appearance: none;
    flex-shrink: 0;
    /* Remove default blue highlight on Chrome/Edge */
    outline: none;
}
.country-code-select:focus[b-3b51yw8fkf] {
    border-color: #1976d2;
    background: #fff;
}

.card-header[b-3b51yw8fkf] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-radius: 12px 12px 0 0;
    padding: 24px 0 18px 0;
    min-height: 56px;
    border-bottom: none;
}

.form-content[b-3b51yw8fkf] {
    overflow-y: auto;
    flex: 1 1 auto;
    padding: 0 16px 28px 16px;
}

.form-group-row[b-3b51yw8fkf], .form-group[b-3b51yw8fkf] {
    width: 100%;
}

.form-control[b-3b51yw8fkf] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fafafa;
    font-size: 1.08rem;
    height: 46px;
    padding-left: 12px;
    padding-right: 12px;
}

.custom-input-group[b-3b51yw8fkf] {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid #c8c8c8;
    border-radius: 7px;
    background: #fafafa;
    padding: 0;
    /* Remove overflow: hidden so no stacking issue */
    overflow: visible;
}

.country-code-select[b-3b51yw8fkf] {
    border: none;
    border-radius: 7px 0 0 7px;
    background: #fafafa;
    min-width: 56px;
    max-width: 72px;
    font-size: 1.08rem;
    font-weight: 500;
    height: 44px;
    margin-right: 0;
    text-align: center;
    appearance: none;
    flex-shrink: 0;
    outline: none;
    padding: 0 10px;
}

.profile-image[b-3b51yw8fkf] {
    height: 54px;        
    object-fit: contain; 
    border-radius: 50%;  
    box-shadow: none;
    align-items: center;
    background: none;
    margin-bottom: 22px; 

}
.mobile-number-input[b-3b51yw8fkf] {
    border: none;
    border-radius: 0 7px 7px 0;
    background: #fafafa;
    font-size: 1.08rem;
    height: 44px;
    padding-left: 10px;
    flex: 1 1 auto;
    min-width: 0;
    box-sizing: border-box;
}

.custom-input-group:focus-within .country-code-select[b-3b51yw8fkf],
.custom-input-group:focus-within .mobile-number-input[b-3b51yw8fkf] {
    border-color: #1976d2;
}

input.form-control:focus[b-3b51yw8fkf],
.mobile-number-input:focus[b-3b51yw8fkf] {
    background: #fff;
    border-color: #1976d2;
    outline: none;
}


.form-group-row[b-3b51yw8fkf] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 12px;
}
.verify-btn[b-3b51yw8fkf] {
    min-width: 100px;   
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
}

.form-group[b-3b51yw8fkf] {
    flex: 1 1 180px;
    min-width: 120px;
    max-width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.form-control[b-3b51yw8fkf],
select.form-control[b-3b51yw8fkf],
input.form-control[b-3b51yw8fkf] {
    width: 100%;
    padding: 7px 9px;
    font-size: 0.98rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

label[b-3b51yw8fkf] {
    font-size: 0.97rem;
    font-weight: bold;
    margin-bottom: 2px;
    color: #2b2b2b;
}

/* Buttons row (right aligned) */
.form-actions-row[b-3b51yw8fkf] {
    display: flex;
    justify-content: center; 
    margin-top: 18px;
    margin-bottom: 4px;
    width: 100%;
}

.small-btn[b-3b51yw8fkf] {
    padding: 0.32rem 0.8rem;
    font-size: 0.97rem;
    margin-left: 8px;
}

/* Inputs consistency */
input[type="date"].form-control[b-3b51yw8fkf] { min-height: 32px; padding: 7px; }
input[type="file"].form-control[b-3b51yw8fkf] { padding: 3px 2px; }

/* Optional helper classes preserved for parity with CAIF pages */
.section-divider[b-3b51yw8fkf] {
    border-top: 2px solid #e7e7e7;
    margin: 22px 0 16px 0;
}

.personal-info-section[b-3b51yw8fkf] {
    padding-bottom: 6px;
    margin-bottom: 14px; /* increase space below the line */
    padding-top: 5px;
    margin-top: 5px;
}

.form-group-row:first-of-type[b-3b51yw8fkf] {
    margin-top: 8px; /* ensures first input doesn't touch the line */
}

/* ===== Responsive (tablet/mobile) ===== */
@media (max-width: 1023px) {
    .form-group-row[b-3b51yw8fkf] {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .form-group[b-3b51yw8fkf] {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
    }
    .details-card[b-3b51yw8fkf] {
        width: 98vw !important;
        min-width: 0 !important;
        max-width: 99vw !important;
        margin: 10px 1vw !important;
        padding: 0 2vw 18px 2vw !important;
        border-radius: 14px !important;
        box-sizing: border-box;
    }
    .card-header[b-3b51yw8fkf] {
        padding: 18px 0 14px 0 !important;
    }
    .form-content[b-3b51yw8fkf] {
        padding: 0 0 20px 0 !important;
    }
    .card-header h3[b-3b51yw8fkf],
    h3[b-3b51yw8fkf] {
        font-size: 1.22rem !important;
        line-height: 1.15 !important;
        letter-spacing: 0.5px !important;
        padding: 0 2vw !important;
        word-break: break-word !important;
    }

    .form-content[b-3b51yw8fkf] {
        padding-top: 12px;               /* space between the line and first field */
    }

    /* or instead of padding-top, you can bump just the first row */
    .form-group-row:first-of-type[b-3b51yw8fkf] {
        margin-top: 12px;                /* extra gap before “Email” */
    }

 

}
/* _content/Trader.Web/Components/Pages/BrokerByCounter.razor.rz.scp.css */
body[b-iao9lafefq] {
}
/* _content/Trader.Web/Components/Pages/BrokerRanking.razor.rz.scp.css */
body[b-dw96ncmabv] {
}
/* _content/Trader.Web/Components/Pages/BrokersReport.razor.rz.scp.css */
body[b-c9em5ouie7] {
}
/* _content/Trader.Web/Components/Pages/BrokerTransaction.razor.rz.scp.css */
body[b-0hn7qgid5b] {
}
/* _content/Trader.Web/Components/Pages/CAIF/BasicForm.razor.rz.scp.css */
h3[b-ani3e3tr6w] {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}
.card-header h3[b-ani3e3tr6w] {
    font-size: 1.22rem;       
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    white-space: nowrap;      
    overflow: hidden;        
    text-overflow: ellipsis; 
    width: 100%;
    max-width: 100%;
    display: block;
}
h4[b-ani3e3tr6w] {
    font-weight: bold;
}

.details-container[b-ani3e3tr6w] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    width: 100vw;
}

.details-card[b-ani3e3tr6w] {
    width: 40%;
    min-width: 300px;
    margin: 10px auto;
    padding: 0 16px 28px 16px;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
    max-height: 96vh;       
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card-header[b-ani3e3tr6w] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff; 
    border-radius: 12px 12px 0 0;
    padding: 24px 0 18px 0;
    min-height: 56px;
}

.form-content[b-ani3e3tr6w] {
    overflow-y: auto;  /* Only scrolls the content! */
    flex: 1 1 auto;
    padding: 0 16px 28px 16px;
}
.form-group-row[b-ani3e3tr6w] {
    display: flex;
    flex-direction: row;   /* Always row unless mobile */
    gap: 10px;
    margin-bottom: 12px;
}
.form-group[b-ani3e3tr6w] {
    flex: 1 1 180px;
    min-width: 120px;
    max-width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.form-control[b-ani3e3tr6w],
select.form-control[b-ani3e3tr6w],
input.form-control[b-ani3e3tr6w] {
    width: 100%;
    padding: 7px 9px;
    font-size: 0.98rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

label[b-ani3e3tr6w] {
    font-size: 0.97rem;
    font-weight: bold;
    margin-bottom: 2px;
    color: #2b2b2b;
}

.radio-table-compact[b-ani3e3tr6w] {
    width: 100%;
    min-width: 400px; 
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0 0 10px 10px;
    overflow-x: auto;
}
.radio-table-compact td[b-ani3e3tr6w] {
    border: 1px solid #ccc;
    padding: 3px 5px;
    font-size: 0.95rem;
    background: #fff;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.form-actions-row[b-ani3e3tr6w] {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
    margin-bottom: 4px;
    width: 100%;
}
.small-btn[b-ani3e3tr6w] {
    padding: 0.32rem 0.8rem;
    font-size: 0.97rem;
    margin-left: 8px;
}

.form-check[b-ani3e3tr6w] { display: flex; align-items: center; margin-right: 12px; }
.form-group .checkbox-group[b-ani3e3tr6w] { display: flex; align-items: center; }
.checkbox-group label[b-ani3e3tr6w] { margin-left: 10px; }
input[type="radio"][b-ani3e3tr6w] {
    accent-color: #007bff;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
}
input[type="date"].form-control[b-ani3e3tr6w] { min-height: 32px; padding: 7px; }
input[type="file"].form-control[b-ani3e3tr6w] { padding: 3px 2px; }

/* --- FOR LAPTOPS/DESKTOPS >= 1024PX: STAY COMPACT, 2-COLUMN --- */
/*@media (min-width: 1024px) {*/
/*    .details-card {*/
/*        max-width: 520px;*/
/*        min-width: 320px;*/
/*        padding: 18px 18px 28px 18px;*/
/*    }*/
/*    .form-group-row {*/
/*        flex-direction: row;*/
/*    }*/
/*    .radio-table-compact td {*/
/*        font-size: 0.99rem;*/
/*    }*/
/*}*/
/* --- FOR ULTRA-WIDE (1440PX+) IF YOU WANT IT EVEN SMALLER --- */
/*@media (min-width: 1440px) {*/
/*    .details-card {*/
/*        max-width: 460px;*/
/*        min-width: 320px;*/
/*    }*/
/*}*/
/* --- FOR TABLETS/MOBILE: SINGLE COLUMN, RESPONSIVE --- */
/*@media (max-width: 1023px) {*/
/*    .details-card {*/
/*        max-width: 100%;*/
/*        min-width: 0;*/
/*        padding: 10px 2vw 18px 2vw;*/
/*    }*/
/*    .form-group-row {*/
/*        flex-direction: column;*/
/*        gap: 0;*/
/*    }*/
/*    .form-group {*/
/*        width: 100%;*/
/*        min-width: unset;*/
/*    }*/
/*    .radio-table-compact,*/
/*    .radio-table-compact tr,*/
/*    .radio-table-compact td {*/
/*        display: block;*/
/*        width: 100%;*/
/*        box-sizing: border-box;*/
/*        padding: 4px 0;*/
/*        font-size: 0.97rem;*/
/*    }*/
/*    .form-actions-row { margin-top: 14px; }*/
/*}*/

/* --- NO FIELD GOES OUT OF THE CARD --- */


/* --- REMOVE ANY STRAY .form-group DUPLICATE STYLE (MUST BE ONE!) --- */
/* --- REMOVE ANY STRAY .form-group DUPLICATE STYLE (MUST BE ONE!) --- */

/* --- GENDER, CHECKBOX ETC. REMAINS SAME --- */
.gender-table[b-ani3e3tr6w] {
    width: auto;
    margin-top: 2px;
    margin-bottom: 2px;
    border-collapse: separate;
    border-spacing: 0 0.5em;
    background: none;
}
.gender-table td[b-ani3e3tr6w] {
    border: none;
    padding: 0 18px 0 0;
    vertical-align: middle;
}

.section-divider[b-ani3e3tr6w] {
    border-top: 2px solid #e7e7e7;
    margin: 22px 0 16px 0;
}

.miniform[b-ani3e3tr6w] {
    width: 50% !important;        
    max-width: 200px !important;  
    min-width: 96px;
    font-size: 0.97rem;
    padding: 5px 8px !important;
    display: inline-block;
    box-sizing: border-box;
    height: 20px;

}

@media (max-width: 1023px) {
    .form-group-row[b-ani3e3tr6w] {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .form-group[b-ani3e3tr6w] {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
    }
    .details-card[b-ani3e3tr6w] {
        width: 98vw !important;
        min-width: 0 !important;
        max-width: 99vw !important;
        margin: 10px 1vw !important;
        padding: 0 2vw 18px 2vw !important;
        border-radius: 14px !important;
        box-sizing: border-box;
    }
    .card-header[b-ani3e3tr6w] {
        padding: 18px 0 14px 0 !important;
    }
    .form-content[b-ani3e3tr6w] {
        padding: 0 0 20px 0 !important;
    }
    .form-title[b-ani3e3tr6w], .card-header h3[b-ani3e3tr6w], .card-header h4[b-ani3e3tr6w] {
        font-size: 1.22rem !important;
        line-height: 1.15 !important;
        letter-spacing: 0.5px !important;
        padding: 0 2vw !important;
        word-break: break-word !important;
    }
    /* Make all tables fit the container width */
    .radio-table-compact[b-ani3e3tr6w] {
        width: 100% !important;
        table-layout: fixed !important;
        border-spacing: 0 !important;
    }

    .radio-table-compact tr[b-ani3e3tr6w] {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
    }

    .radio-table-compact td[b-ani3e3tr6w] {
        border: 1px solid #e0e0e0 !important;
        display: inline-block !important;
        width: 50% !important;           /* Two columns */
        box-sizing: border-box !important;
        padding: 5px 6px !important;
        font-size: 0.98rem !important;
        vertical-align: top !important;
    }

    .miniform[b-ani3e3tr6w] {
        width: 95% !important;
        max-width: 160px !important;   /* Smaller cap for narrow screens */
        margin-left: 4px;
        font-size: 0.96rem;
        height: 20px;
    }
}

/* _content/Trader.Web/Components/Pages/CAIF/PendingApproval.razor.rz.scp.css */
.pending-wrapper[b-q6mha69664] {
    height: calc(100vh - 60px); /* adjust if your AnonLayout has a header */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.pending-card[b-q6mha69664] {
    width: 100%;
    max-width: 480px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.pending-card h2[b-q6mha69664] {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.7rem;
}

.pending-card .msg[b-q6mha69664] {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 12px;
}

.pending-card .sub-msg[b-q6mha69664] {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 20px;
}

.back-btn[b-q6mha69664] {
    padding: 8px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
}
/* _content/Trader.Web/Components/Pages/CAIF/RegularForm.razor.rz.scp.css */
/* ---- GENERAL LAYOUT ---- */
h3[b-anxee1vup9] {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}
.card-header h3[b-anxee1vup9] {
    font-size: 1.22rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 100%;
    display: block;
}

.details-container[b-anxee1vup9] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    width: 100vw;
}

.details-card[b-anxee1vup9] {
    width: 30%;
    min-width: 300px;
    margin: 10px auto;
    padding: 0 16px 28px 16px;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
    max-height: 96vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card-header[b-anxee1vup9] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-radius: 12px 12px 0 0;
    padding: 24px 0 18px 0;
    min-height: 56px;
}

.form-content[b-anxee1vup9] {
    overflow-y: auto;  
    flex: 1 1 auto;
    padding: 0 16px 28px 16px;
}

.disclosures-row-vertical[b-anxee1vup9] {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
}
.disclosure-item-row[b-anxee1vup9] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.disclosure-label[b-anxee1vup9] {
    margin: 0 8px 0 0;
    min-width: 200px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}
.disclosure-details[b-anxee1vup9] {
    min-width: 120px;
    max-width: 180px;
}

.modal-content[b-anxee1vup9] {
    max-height: 92vh;
    overflow-y: auto;
}

@media (max-width: 1023px) {
    .details-card[b-anxee1vup9] {
        width: 98vw !important;
        min-width: 0 !important;
        max-width: 99vw !important;
        margin: 10px 1vw !important;
        padding: 0 2vw 18px 2vw !important;
        border-radius: 14px !important;
        box-sizing: border-box;
    }

    .card-header[b-anxee1vup9] {
        padding: 18px 0 14px 0 !important;
    }

    .form-content[b-anxee1vup9] {
        padding: 0 0 20px 0 !important;
    }

    .form-title[b-anxee1vup9], .card-header h3[b-anxee1vup9], .card-header h4[b-anxee1vup9] {
        font-size: 1.2rem !important;
        line-height: 1.15 !important;
        letter-spacing: 0.5px !important;
        padding: 0 2vw !important;
        word-break: break-word !important;
    }

    .small-btn[b-anxee1vup9] {
        padding: 0.32rem 0.8rem;
        font-size: 0.97rem;
        margin-left: 8px;
    }
    
    .radio-table-compact[b-anxee1vup9] {
        width: 100% !important;
        table-layout: fixed !important;
        border-spacing: 0 !important;
    }

    .radio-table-compact tr[b-anxee1vup9] {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
    }

    .radio-table-compact td[b-anxee1vup9] {
        border: 1px solid #e0e0e0 !important;
        display: inline-block !important;
        width: 50% !important; /* Two columns */
        box-sizing: border-box !important;
        padding: 5px 6px !important;
        font-size: 0.98rem !important;
        vertical-align: top !important;
    }
    .disclosures-row[b-anxee1vup9] {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px 16px;
        margin-bottom: 16px;
        align-items: start;
    }
    
   
    .disclosure-label[b-anxee1vup9] {
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 1rem;
        gap: 7px;
        margin-bottom: 3px;
        line-height: 1.3;
        min-height: 28px;
    }

  
}

@media (max-width: 768px) {
    .details-card[b-anxee1vup9] {
        max-width: 100vw;
        border-radius: 0;
        height: 100vh;
    }
    .form-content[b-anxee1vup9] {
        padding: 14px 4px;
        max-height: 90vh;
    }
    .form-group-row[b-anxee1vup9] {
        flex-direction: column;
        gap: 0;
    }
    .disclosures-row[b-anxee1vup9] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        grid-template-columns: 1fr;

    }
    .disclosure-label[b-anxee1vup9], .disclosure-input[b-anxee1vup9] {
        width: 100%;
        min-width: 0;
    }
    .disclosure-input[b-anxee1vup9] { margin-top: 2px; }

}

/* ---- FORM LAYOUT ---- */
.form-group-row[b-anxee1vup9] {
    gap: 10px;
    margin-bottom: 12px;
}
.form-group[b-anxee1vup9] {
    flex: 1 1 180px;
    min-width: 120px;
    max-width: 100%;
    margin-bottom: 0;
}


.form-control[b-anxee1vup9],
select.form-control[b-anxee1vup9],
input.form-control[b-anxee1vup9] {
    width: 100%;
    padding: 7px 9px;
    font-size: 0.98rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

label[b-anxee1vup9] {
    font-size: 0.97rem;
    font-weight: bold;
    margin-bottom: 2px;
    color: #2b2b2b;
}

/* ---- SECTION TITLES ---- */
h4[b-anxee1vup9] {
    margin-top: 14px;
    margin-bottom: 14px;
    font-weight: bold;
}
.personal-info-section[b-anxee1vup9] {
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    margin-top: 5px;
}
.section-divider[b-anxee1vup9] {
    height: 16px;
}



.alert[b-anxee1vup9] {
    text-align: center;
    height: 25px;
    margin-bottom: 12px;
}

.switch[b-anxee1vup9] {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}
.switch input[b-anxee1vup9] { opacity: 0; width: 0; height: 0; }
.slider[b-anxee1vup9] {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider[b-anxee1vup9]:before {
    position: absolute;
    content: "";
    height: 16px; width: 16px; left: 4px; bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider[b-anxee1vup9] { background-color: #007bff; }
input:checked + .slider[b-anxee1vup9]:before { transform: translateX(18px); }

/* ---- RADIO TABLES ---- */
.radio-table-compact[b-anxee1vup9] {
    width: 100%;
    min-width: 400px;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0 0 10px 10px;
    overflow-x: auto;
}
.radio-table-compact td[b-anxee1vup9] {
    border: 1px solid #ccc;
    padding: 3px 5px;
    font-size: 0.95rem;
    background: #fff;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .radio-table-compact[b-anxee1vup9] { width: 100% !important; min-width: unset !important; }
    .radio-table-compact td[b-anxee1vup9] { padding: 6px 4px; }
}

.checkbox-group[b-anxee1vup9] {
    display: flex;
    align-items: center;
}
.checkbox-group label[b-anxee1vup9] {
    margin-left: 10px;
}


.form-actions-row[b-anxee1vup9] {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
    margin-bottom: 4px;
    width: 100%;
}
/* _content/Trader.Web/Components/Pages/Login.razor.rz.scp.css */
/* =======================[ Reset & Base Styles ]======================= */
*[b-q5gix7t5sr] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body[b-q5gix7t5sr] {
    background-color: #f0f0f0;
    height: 100vh;
}

/* =======================[ Layout Containers ]======================= */
.outer-container[b-q5gix7t5sr] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: white;
    overflow: hidden;
    padding: 1rem;
}
.card-wrapper[b-q5gix7t5sr] {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card[b-q5gix7t5sr] {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    min-width: 305px;
    max-width: 380px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* =======================[ Logo & Images ]======================= */
.profile-image[b-q5gix7t5sr] {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* =======================[ Form Groups ]======================= */
.form-group[b-q5gix7t5sr] {
    position: relative;
    margin-bottom: 20px;
}
.form-group i[b-q5gix7t5sr] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.2rem;
}

/* =======================[ Login Button ]======================= */
.btn-login[b-q5gix7t5sr] {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 24px;
    font-size: 14px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}
.btn-login:hover[b-q5gix7t5sr] { background-color: #0056b3; }

/* =======================[ Floating Message ]======================= */
.floating-message[b-q5gix7t5sr] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.floating-message.show[b-q5gix7t5sr] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: fadeInOut-b-q5gix7t5sr 1.3s ease-in-out forwards;
}
.floating-message.error[b-q5gix7t5sr] {
    position: absolute;
    bottom: -55px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #f8d7da;
    color: #842029;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.floating-message.success[b-q5gix7t5sr] {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

@keyframes fadeInOut-b-q5gix7t5sr {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
/* _content/Trader.Web/Components/Pages/Markets/DepthMatrix.razor.rz.scp.css */
.outlined-card-container[b-t6wnhmr98x] {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    max-height: calc(100vh - 70px);
    overflow: auto;
}

.outlined-card[b-t6wnhmr98x]{
    width: 370px;
    height: 290px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.card-inner[b-t6wnhmr98x] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.card-header[b-t6wnhmr98x] {
    width: 100%;
    height: 30px;
    border-bottom:1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    gap: 8px;
    position: relative;
}

.card-title-input[b-t6wnhmr98x] {
    width: 80px;
    height: 18px;
    border: none;
    border-bottom: 1px solid #808080;
    background: transparent;
    color: #000000;
    outline: none;
    text-align: left;
    padding: 0;
}

.save-button[b-t6wnhmr98x] {
    width: 25px;
    height: 25px;
    background: #137c4b;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    border-radius: 4px;
}

.save-button:hover[b-t6wnhmr98x] {
    background: #0b5d37;
}

.close-button[b-t6wnhmr98x] {
    width: 25px;
    height: 25px;
    background: #d9534f;
    color: white;
    border: none; 
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    position: absolute;
    right: 3px;
    border-radius: 4px;
}

.close-button:hover[b-t6wnhmr98x] {
    background: #c9302c;
}

.stock-table-container[b-t6wnhmr98x] {
    padding: 5px;
    flex: 1;
}

.stock-table-container table[b-t6wnhmr98x] {
    width: 100%;
    margin-bottom: 5px;
    font-size: smaller;
}

.top-table td[b-t6wnhmr98x] {
    font-weight: bold;
    border: none;
}

.no-watchlist-msg[b-t6wnhmr98x] {
    padding: 20px;
    font-weight: bold;
    color: #888;
    text-align: center;
    width: 100%;
}

.depth-table[b-t6wnhmr98x]{
    border: 1px solid lightgray;
    border-collapse: separate;
}

.sales-table[b-t6wnhmr98x]{
    border: 1px solid lightgray;
    border-collapse: separate;
}
/* _content/Trader.Web/Components/Pages/NewsAnnouncement.razor.rz.scp.css */
body[b-u2zzgxov55] {
}
/* _content/Trader.Web/Components/Pages/OrderTicket.razor.rz.scp.css */
/* =======================[ Alerts ]======================= */
.alert-error[b-w5zg3hzcun],
.alert-success[b-w5zg3hzcun] {
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.88em;
    border-width: 1px;
    border-style: solid;
}
.alert-error[b-w5zg3hzcun] {
    background-color: #f8d7da;
    color: red;
    border-color: #f5c2c7;
}
.alert-success[b-w5zg3hzcun] {
    background-color: #d1e7dd;
    color: #0f5132;
    border-color: #badbcc;
}
.alert-fade[b-w5zg3hzcun] {
    transition: opacity 0.5s ease;
    opacity: 0;
}

/* =======================[ Form Elements ]======================= */
select[b-w5zg3hzcun],
input[b-w5zg3hzcun] {
    text-align: center;
    text-align-last: center;
}

/* =======================[ Layout Containers ]======================= */
.ticket-container[b-w5zg3hzcun],
.confirm-container[b-w5zg3hzcun],
.posted-container[b-w5zg3hzcun] {
    width: 100%;
    height: 100%;
    padding: 10px 10px 5px 10px;
    display: flex;
    flex-direction: column;
}

/* =======================[ Symbol Input Row ]======================= */
.ticket-symbol[b-w5zg3hzcun] {
    display: grid;
    grid-template-columns: max-content 100px max-content;
    gap: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid lightgray;
    align-items: center;
}

/* =======================[ Market Price Widget ]======================= */
.ticket-market[b-w5zg3hzcun] {
    display: grid;
    grid-template-columns: 125px auto;
    padding-bottom: 5px;
    border-bottom: 1px solid lightgray;
    align-items: center;
}
.price[b-w5zg3hzcun] {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    font-size: larger;
}
.change[b-w5zg3hzcun] { grid-column: 1; grid-row: 3; }
.status[b-w5zg3hzcun] { grid-column: 2; grid-row: 1; }
.bid[b-w5zg3hzcun]    { grid-column: 2; grid-row: 2; }
.ask[b-w5zg3hzcun]    { grid-column: 2; grid-row: 3; }

/* =======================[ Order Form ]======================= */
.ticket-order[b-w5zg3hzcun] {
    padding-top: 15px;
    display: grid;
    grid-template-columns: 120px 1fr;
    row-gap: 5px;
    column-gap: 10px;
    align-items: center;
    width: 100%;
}
.ticket-order label[b-w5zg3hzcun] {
    white-space: nowrap;
    margin-bottom: 0;
    padding-top: 2px;
}
.ticket-order input:not([type="checkbox"])[b-w5zg3hzcun],
.ticket-order select[b-w5zg3hzcun] {
    padding: 4px 8px;
}
.ticket-order .full-span[b-w5zg3hzcun] {
    grid-column: span 2;
}
.ticket-order .stacked-input-group[b-w5zg3hzcun] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.ticket-order .form-check[b-w5zg3hzcun] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
}

/* =======================[ Buttons & Feedback ]======================= */
.btn-success[b-w5zg3hzcun] {
    padding: 10px;
    font-weight: bold;
}
.text-danger.mt-2[b-w5zg3hzcun],
.text-success.mt-2[b-w5zg3hzcun] {
    margin-top: 8px;
}

/* =======================[ Stock Message & Loading ]======================= */
.stock-message[b-w5zg3hzcun] {
    font-size: 32px;
    font-weight: bold;
    color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    pointer-events: none;
}

.loading-container[b-w5zg3hzcun] {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
}

/* =======================[ Spinner (Loading Indicator) ]======================= */
.spinner[b-w5zg3hzcun] {
    border: 4px solid rgba(0,0,0,0.1);
    border-left-color: #007bff;
    width: 50px; height: 50px;
    border-radius: 50%;
    animation: spin-b-w5zg3hzcun 1s linear infinite;
    display: block;
}
@keyframes spin-b-w5zg3hzcun {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
/* _content/Trader.Web/Components/Pages/Profile/ChangePassword.razor.rz.scp.css */
/* =======================[ Input Group ]======================= */
.input-group[b-xcqqbl8jmo] {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
}
.input-group label[b-xcqqbl8jmo] {
    margin-bottom: 5px;
    font-weight: bold;
}
.input-group input[b-xcqqbl8jmo] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    width: 100%;
}
.input-group button[b-xcqqbl8jmo] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
}

/* =======================[ Save Button ]======================= */
#saveButton[b-xcqqbl8jmo] {
    display: block;
    width: 200px;
    margin: 10px auto;
    padding: 5px;
    border: none;
    font-size: 15px;
    font-weight: bold;
    transition: background 0.3s ease;
}

/* =======================[ Disabled Button State ]======================= */
.disabled-button[b-xcqqbl8jmo] {
    background-color: lightblue;
    cursor: not-allowed;
}

/* =======================[ Message Styles ]======================= */
.message[b-xcqqbl8jmo] {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 5px;
    height: min-content;
    width: 90%;
    text-align: center;
}
.message.error[b-xcqqbl8jmo] {
    background-color: #ff7474;
    outline: 1px solid #e50000;
    max-width: 400px;
    width: 100%;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 10px;
    animation: fadeOut-b-xcqqbl8jmo 1s ease-out 3s forwards;
    overflow: hidden;
}
.message.succeed[b-xcqqbl8jmo] {
    background-color: #77ed8b;
    outline: 1px solid #3ccb3b;
    max-width: 400px;
    width: 100%;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 10px;
    animation: fadeOut-b-xcqqbl8jmo 1s ease-out 3s forwards;
    overflow: hidden;
}
.message.no-fill[b-xcqqbl8jmo] {
    background-color: #faff8f;
    outline: 1px solid #b2be07;
    max-width: 400px;
    width: 100%;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 10px;
    animation: fadeOut-b-xcqqbl8jmo 1s ease-out 3s forwards;
    overflow: hidden;
}
@keyframes fadeOut-b-xcqqbl8jmo {
    to {
        opacity: 0;
        height: 0;
        padding: 0;
        margin: 0;
        overflow: hidden;
        visibility: hidden;
    }
}

/* =======================[ Responsive Fixes ]======================= */
@media (max-width: 768px) {
    .input-group[b-xcqqbl8jmo] {
        max-width: 100%;
    }
    #saveButton[b-xcqqbl8jmo] {
        width: 100%;
    }
}
/* _content/Trader.Web/Components/Pages/Profile/Logout.razor.rz.scp.css */
body[b-tj37jecekf] {
}
/* _content/Trader.Web/Components/Pages/Terminal/OrderActivity.razor.rz.scp.css */
body[b-9qck1fvckq] {
}
/* _content/Trader.Web/Components/Pages/Terminal/Trade.razor.rz.scp.css */
/* =======================[ Layout Structure ]======================= */
.terminal-grid[b-u0rkogky55] {
    display: grid;
    grid-template-columns: 290px 1fr;
    grid-template-rows: 90px auto;
    width: 100%;
    height: 100vh;
}

.ticker-row[b-u0rkogky55] {
    grid-column: span 2;
    grid-row: 1;
    width: 100%;
    display: flex;
    align-items: center;
    background: #000;
}

.market-widget-row[b-u0rkogky55] { grid-column: 2; overflow: auto }

.watchlist-column[b-u0rkogky55] {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: center;
    background: whitesmoke;
}

/* =======================[ Ticker Feed ]======================= */
#ticker-feed[b-u0rkogky55] {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100%;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px 5px;
}
#ticker-feed .item[b-u0rkogky55] {
    opacity: 0;
    animation: fadeIn-b-u0rkogky55 0.2s forwards;
}
@keyframes fadeIn-b-u0rkogky55 {
    to { opacity: 1; }
}

.loading-placeholder[b-u0rkogky55] {
    width: 100vw;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(90deg, #0d0d0d 25%, #3a3a3a 50%, #0d0d0d 75%);
    background-size: 200% 100%;
    animation: shimmer-b-u0rkogky55 1.8s infinite linear;
}
@keyframes shimmer-b-u0rkogky55 {
    0% { background-position: -250% 0; }
    100% { background-position: 250% 0; }
}

.item[b-u0rkogky55] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
    margin-left: 6px;
    padding: 2px;
    height: 100%;
    max-height: 100%;
    flex-shrink: 0;
}
.item span[b-u0rkogky55] { width: 100%; }

.properties[b-u0rkogky55] {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}
.properties li[b-u0rkogky55] {
    margin: 0;
    padding: 0;
    flex: 1;
}
.properties li:nth-child(4)[b-u0rkogky55] { padding-left: 6px; }

.price-up[b-u0rkogky55]    { color: #47e34d; }
.price-down[b-u0rkogky55]  { color: #ff2844; }
.no-change[b-u0rkogky55]   { color: #fff; }


/* =======================[ Stock Info Widget ]======================= */
.stock-info-container[b-u0rkogky55] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 10px 5px 5px 10px;
    gap: 80px;
}
.stock-info-left[b-u0rkogky55], .stock-info-middle[b-u0rkogky55], .stock-info-right[b-u0rkogky55] {
    display: flex;
    flex-direction: column;
}
.stock-info-left[b-u0rkogky55]   { align-items: flex-start; }
.stock-info-middle[b-u0rkogky55] { align-items: flex-end; }
.stock-info-right[b-u0rkogky55]  { align-items: flex-end; }
.stock-symbol[b-u0rkogky55]      { font-size: 16px; }
.stock-price[b-u0rkogky55]       { font-size: 15px; font-weight: bold; }
.stock-info-table td[b-u0rkogky55] { text-align: left; border: none; }


/* =======================[ Watchlist ]======================= */
.watchlist-wrapper[b-u0rkogky55] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 5px;
}
.watchlist-search[b-u0rkogky55] {
    width: 100%;
    padding: 8px 8px 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.snapshot-link-row[b-u0rkogky55] {
    width: 100%;
    padding: 4px 0;
    border-bottom: 1px solid lightgray;
    text-align: center;
}
.market-snapshot-link[b-u0rkogky55] {
    font-weight: bold;
    color: #0d6efd;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}
.market-snapshot-link:hover[b-u0rkogky55],
.hover-cell:hover[b-u0rkogky55] {
    color: #0a58ca;
    text-decoration: underline;
}
.hover-cell:hover[b-u0rkogky55] { cursor: pointer; }
.search-input-container[b-u0rkogky55] {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 3px;
}
.search-button[b-u0rkogky55] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 8px;
}
.search-row[b-u0rkogky55] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-bottom: 15px;
    border-bottom: 1px solid lightgray;
}
.quote-cell[b-u0rkogky55] {
    display: flex;
    align-items: end;
    justify-content: end;
}
.search-bar-group[b-u0rkogky55] {
    display: flex;
    gap: 5px;
    width: 60%;
}
.watchlist-container[b-u0rkogky55] {
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
    padding: 8px;
}
.watchlist-table[b-u0rkogky55] {
    width: 100%;
    height: auto;
    text-align: left;
}
.watchlist-table th[b-u0rkogky55],
.watchlist-table td[b-u0rkogky55] { border-bottom: 1px solid lightgray; }
.watchlist-table th[b-u0rkogky55] { font-weight: bold; }
.watchlist-table td[b-u0rkogky55] {
    text-align: center;
}
.watchlist-table th:first-child[b-u0rkogky55],
.watchlist-table td:first-child[b-u0rkogky55] {
    border-left: none;
}
.watchlist-table th:last-child[b-u0rkogky55],
.watchlist-table td:last-child[b-u0rkogky55] {
    border-right: none;
}

i[b-u0rkogky55] { font-size: medium; }
i:hover[b-u0rkogky55] { cursor: pointer; }

.no-data-row td[b-u0rkogky55],
.loading-row td[b-u0rkogky55] {
    height: 130px;
    font-weight: bold;
    color: gray;
    vertical-align: middle;
    border: none;
    text-align: center;
}


/* =======================[ Widgets & Modals ]======================= */
.widget-grid[b-u0rkogky55] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 15px;
    width: 80%;
    max-width: 100%;
    height: fit-content;
    padding-left: 10px;
    padding-top: 10px;
    box-sizing: border-box;
}
.widget-container[b-u0rkogky55] {
    text-align: center;
    height: 180px;
    border: 1px solid lightgray;
}
.widget-container .widgets-table[b-u0rkogky55] {
    width: 100%;
    border: 1px solid #fff;
}


.widgets-table[b-u0rkogky55] {
    width: 100%;
    height: auto;
    border: none;
}
.widgets-table th[b-u0rkogky55] { border-top: none; }
.widgets-table th[b-u0rkogky55],
.widgets-table td[b-u0rkogky55] {
}
.widgets-table th:first-child[b-u0rkogky55],
.widgets-table td:first-child[b-u0rkogky55] {
    border-left: none;
}
.widgets-table th:last-child[b-u0rkogky55],
.widgets-table td:last-child[b-u0rkogky55] {
    border-right: none;
}
.widgets-table tr:nth-child(7) td[b-u0rkogky55] {
    border-bottom: none;
}

.spinner[b-u0rkogky55] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0,0,0,0.1);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin-b-u0rkogky55 1s linear infinite;
    margin: 10px auto;
}
@keyframes spin-b-u0rkogky55 {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

/* =======================[ Market Section ]======================= */
.market-container[b-u0rkogky55] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-gap: 20px;
    padding: 11px 30px 10px 10px;
}
.market-indices[b-u0rkogky55],
.market-summary[b-u0rkogky55] {
    width: 100%;
    border: 1px solid lightgray;
    border-collapse: separate;
}
.market-indices td[b-u0rkogky55],
.market-summary td[b-u0rkogky55] {
    padding: 5px 10px;
    text-align: right;
}
.market-indices td:first-child[b-u0rkogky55],
.market-summary td:first-child[b-u0rkogky55] {
    text-align: left;
    font-weight: bold;
}

/* =======================[ Modal Styles ]======================= */
.modal-title[b-u0rkogky55] {
    flex: 1;
    text-align: center;
    font-weight: bold;
}
.modal-header[b-u0rkogky55] {
    border-bottom: none;
    padding: 15px 0 1px 0;
}
.modal-header .btn-close[b-u0rkogky55] {
    position: absolute;
    right: 18px;
    top: 16px;
    z-index: 10;
}
.modal-content[b-u0rkogky55] {
    border-radius: 10px;
    overflow: hidden;
}
.modal-body .widget-container[b-u0rkogky55] {
    max-height: 300px;
    overflow-y: auto;
}
.modal-lg-custom[b-u0rkogky55] { max-width: 500px; }
.modal-dialog-compact[b-u0rkogky55] { max-width: 450px; width: 100%; }
.modal-body-compact[b-u0rkogky55] { height: 50vh; }
.see-more[b-u0rkogky55] {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}
.see-more:hover[b-u0rkogky55] {
    text-decoration: underline;
}
.modal-table-wrapper[b-u0rkogky55] {
    border: 1px solid lightgrey;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.modal-table-scroll[b-u0rkogky55] {
    overflow-y: auto;
    max-height: 100%;
}
.modal-widget-table[b-u0rkogky55] { width: 100%; }
.modal-widget-table th[b-u0rkogky55],
.modal-widget-table td[b-u0rkogky55] { background: #fff; }
.modal-widget-table th[b-u0rkogky55] {
    position: sticky;
    top: 0;
    z-index: 100;
    text-align: center;
}
/* _content/Trader.Web/Components/Pages/ViewOrder.razor.rz.scp.css */
/* =======================[ Alerts ]======================= */
.alert-error[b-1x7e3hebjh],
.alert-success[b-1x7e3hebjh] {
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.88em;
    border-width: 1px;
    border-style: solid;
}
.alert-error[b-1x7e3hebjh] {
    background-color: #f8d7da;
    color: red;
    border-color: #f5c2c7;
}
.alert-success[b-1x7e3hebjh] {
    background-color: #d1e7dd;
    color: #0f5132;
    border-color: #badbcc;
}
.alert-fade[b-1x7e3hebjh] {
    transition: opacity 0.5s ease;
    opacity: 0;
}

/* =======================[ Form Elements ]======================= */
select[b-1x7e3hebjh],
input[b-1x7e3hebjh] {
    text-align: center;
    text-align-last: center;
}

/* =======================[ Frame Container ]======================= */
.popup-frame[b-1x7e3hebjh] {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
}

/* =======================[ Tab Headers ]======================= */
.custom-tabs[b-1x7e3hebjh] {
    display: flex;
    margin-bottom: 10px;
}
.tab-btn[b-1x7e3hebjh] {
    flex: 1;
    background: #e9ecef;
    border: 1px solid #ccc;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 13px;
    text-align: center;
    transition: background-color 0.2s;
}
.tab-btn:last-child[b-1x7e3hebjh] { border-right: none; }
.tab-btn.active[b-1x7e3hebjh] {
    font-weight: bold;
    background: #fff;
    border: none;
}

/* =======================[ Tab Contents ]======================= */
.tab-content-container[b-1x7e3hebjh] { padding: 10px; }
.tab-pane[b-1x7e3hebjh] { display: none; }
.tab-pane.active[b-1x7e3hebjh] { display: block; }

/* =======================[ Market Summary ]======================= */
.ticket-market[b-1x7e3hebjh] {
    display: grid;
    grid-template-columns: 125px auto;
    padding-bottom: 5px;
    border-bottom: 1px solid lightgray;
    align-items: center;
}
.price[b-1x7e3hebjh]  {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    font-size: larger;
}
.change[b-1x7e3hebjh] { grid-column: 1; grid-row: 3; }
.status[b-1x7e3hebjh] { grid-column: 2; grid-row: 1; }
.bid[b-1x7e3hebjh]    { grid-column: 2; grid-row: 2; }
.ask[b-1x7e3hebjh]    { grid-column: 2; grid-row: 3; }

/* =======================[ Order Grid ]======================= */
.order-grid[b-1x7e3hebjh] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 10px 0;
}
.order-grid div[b-1x7e3hebjh] { display: flex; align-items: center; gap: 6px; }
.order-grid label[b-1x7e3hebjh] {
    flex: 0 0 100px;
}
.order-grid input[b-1x7e3hebjh],
.order-grid select[b-1x7e3hebjh] {
    flex: 1;
    padding: 5px 6px;
    font-size: 13px;
    width: 100%;
    box-sizing: border-box;
}

/* =======================[ Table (Trades) ]======================= */
.times-sales-scroll[b-1x7e3hebjh] {
    max-height: 66px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.times-sales-scroll table[b-1x7e3hebjh] {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: monospace;
    font-size: 12px;
}
.times-sales-scroll th[b-1x7e3hebjh],
.times-sales-scroll td[b-1x7e3hebjh] {
    padding: 4px 6px;
    border-bottom: 1px solid #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.times-sales-scroll th[b-1x7e3hebjh] {
    background: #f1f1f1;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* =======================[ History ]======================= */
.order-history[b-1x7e3hebjh] { margin-bottom: 10px; }
.history-log[b-1x7e3hebjh] {
    overflow-y: auto;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 12px;
}

/* =======================[ Buttons ]======================= */
.popup-buttons[b-1x7e3hebjh] {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 15px;
    padding: 10px;
}

/* =======================[ Readonly Label ]======================= */
.readonly-label[b-1x7e3hebjh] {
    font-size: 12px;
    padding: 2px 0;
    margin: 0;
    font-family: monospace;
    color: #212529;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* =======================[ Loading ]======================= */
.loading-container[b-1x7e3hebjh] {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner[b-1x7e3hebjh] {
    border: 4px solid rgba(0,0,0,0.1);
    border-left-color: #007bff;
    width: 50px; height: 50px;
    border-radius: 50%;
    animation: spin-b-1x7e3hebjh 1s linear infinite;
}
@keyframes spin-b-1x7e3hebjh {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.rejected-reason-card[b-1x7e3hebjh] {
    grid-column: 1 / span 2;
    background: #ffe6e9;
    border: 1px solid #ff4d4d;
    color: #b30000;
    padding: 10px;
    border-radius: 6px;
    margin-top: 8px;
    white-space: pre-line;
}
