/* _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/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/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/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); }
}
