/* /Pages/OrderTicket.cshtml.rz.scp.css */
/* =======================[ Alerts ]======================= */
.alert-error[b-iajlfbbbj0],
.alert-success[b-iajlfbbbj0] {
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.88em;
    border-width: 1px;
    border-style: solid;
}
.alert-error[b-iajlfbbbj0] {
    background-color: #f8d7da;
    color: red;
    border-color: #f5c2c7;
}
.alert-success[b-iajlfbbbj0] {
    background-color: #d1e7dd;
    color: #0f5132;
    border-color: #badbcc;
}
.alert-fade[b-iajlfbbbj0] {
    transition: opacity 0.5s ease;
    opacity: 0;
}

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

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

/* =======================[ Symbol Input Row ]======================= */
.ticket-symbol[b-iajlfbbbj0] {
    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-iajlfbbbj0] {
    display: grid;
    grid-template-columns: 125px auto;
    padding-bottom: 5px;
    border-bottom: 1px solid lightgray;
    align-items: center;
}
.price[b-iajlfbbbj0] {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    font-size: larger;
}
.change[b-iajlfbbbj0] { grid-column: 1; grid-row: 3; }
.status[b-iajlfbbbj0] { grid-column: 2; grid-row: 1; }
.bid[b-iajlfbbbj0]    { grid-column: 2; grid-row: 2; }
.ask[b-iajlfbbbj0]    { grid-column: 2; grid-row: 3; }

/* =======================[ Order Form ]======================= */
.ticket-order[b-iajlfbbbj0] {
    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-iajlfbbbj0] {
    white-space: nowrap;
    margin-bottom: 0;
    padding-top: 2px;
}
.ticket-order input:not([type="checkbox"])[b-iajlfbbbj0],
.ticket-order select[b-iajlfbbbj0] {
    padding: 4px 8px;
}
.ticket-order .full-span[b-iajlfbbbj0] {
    grid-column: span 2;
}
.ticket-order .stacked-input-group[b-iajlfbbbj0] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.ticket-order .form-check[b-iajlfbbbj0] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
}

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

/* =======================[ Stock Message & Loading ]======================= */
.stock-message[b-iajlfbbbj0] {
    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-iajlfbbbj0] {
    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-iajlfbbbj0] {
    border: 4px solid rgba(0,0,0,0.1);
    border-left-color: #007bff;
    width: 50px; height: 50px;
    border-radius: 50%;
    animation: spin-b-iajlfbbbj0 1s linear infinite;
    display: block;
}
@keyframes spin-b-iajlfbbbj0 {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
/* /Pages/Profile/ChangePassword.cshtml.rz.scp.css */
/* =======================[ Input Group ]======================= */
.input-group[b-s3fc44lov7] {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
}
.input-group label[b-s3fc44lov7] {
    margin-bottom: 5px;
    font-weight: bold;
}
.input-group input[b-s3fc44lov7] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    width: 100%;
}
.input-group button[b-s3fc44lov7] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
}

/* =======================[ Save Button ]======================= */
#saveButton[b-s3fc44lov7] {
    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-s3fc44lov7] {
    background-color: lightblue;
    cursor: not-allowed;
}

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

.modal-overlay[b-s3fc44lov7] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.success-modal[b-s3fc44lov7] {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/* =======================[ Responsive Fixes ]======================= */
@media (max-width: 768px) {
    .input-group[b-s3fc44lov7] {
        max-width: 100%;
    }
    #saveButton[b-s3fc44lov7] {
        width: 100%;
    }
}
/* /Pages/Profile/Login.cshtml.rz.scp.css */
/* =======================[ Reset & Base Styles ]======================= */
*[b-v2rvqdtfy2] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body[b-v2rvqdtfy2] {
    background-color: #f0f0f0;
    height: 100vh;
    
}

/* =======================[ Layout Containers ]======================= */
.outer-container[b-v2rvqdtfy2] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: white;
    overflow: hidden;
    padding: 1rem;
}
.card-wrapper[b-v2rvqdtfy2] {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card[b-v2rvqdtfy2] {
    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-v2rvqdtfy2] {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

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

/* =======================[ Floating Message ]======================= */
.floating-message[b-v2rvqdtfy2] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.floating-message.show[b-v2rvqdtfy2] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: fadeInOut-b-v2rvqdtfy2 1.3s ease-in-out forwards;
}
.floating-message.error[b-v2rvqdtfy2] {
    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-v2rvqdtfy2] {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

@keyframes fadeInOut-b-v2rvqdtfy2 {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
/* /Pages/Profile/Logout.cshtml.rz.scp.css */
body[b-zljgybrm8y] {
}
/* /Pages/Shared/_AppLayout.cshtml.rz.scp.css */
/* =======================[ Page Layout ]======================= */
.page[b-p09h4u3fte] {
    display: flex;
    width: 100%;
    min-width: 900px;
    flex-direction: column;
}

/* =======================[ Header ]======================= */
.header[b-p09h4u3fte] {
    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-p09h4u3fte] { margin: auto; }

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

/* =======================[ Logout Modal ]======================= */
#logout-modal[b-p09h4u3fte] {
    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-p09h4u3fte] {
    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-p09h4u3fte], #logout-button[b-p09h4u3fte] {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
#cancel-logout:hover[b-p09h4u3fte],
#logout-button:hover[b-p09h4u3fte] {
    opacity: 0.8;
}

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

/* =======================[ Error UI Banner ]======================= */
#blazor-error-ui[b-p09h4u3fte] {
    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-p09h4u3fte] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* /Pages/Terminal/Accounts.cshtml.rz.scp.css */
/* =======================[ Layout & Grid ]======================= */
.portfolio-grid[b-t0f3ixiut3] {
    display: grid;
    grid-template-columns: 15% 85%;
    grid-template-rows: 10% 90%;
    width: 100%;
    height: 100%;
}

/* =======================[ Sidebar (Accounts) ]======================= */
.side[b-t0f3ixiut3] {
    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-t0f3ixiut3] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* =======================[ Portfolio Header Section ]======================= */
.portfolio-header[b-t0f3ixiut3] {
    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-t0f3ixiut3] {
    display: flex;
    flex-direction: column;
    padding: 8px;
    height: 50px;
    border: 1px solid lightgray;
}

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

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

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

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

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

.portfolio-table[b-t0f3ixiut3] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

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

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

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

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

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

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

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

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

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

.spinner[b-t0f3ixiut3] {
    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-t0f3ixiut3 1s linear infinite;
    display: inline-block;
}

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

/* =======================[ Miscellaneous ]======================= */
i[b-t0f3ixiut3] {
    font-size: medium;
}
/* /Pages/Terminal/DepthMatrix.cshtml.rz.scp.css */
.outlined-card-container[b-5x1twjxpwy] {
    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-5x1twjxpwy]{
    width: 370px;
    height: 290px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

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

.card-header[b-5x1twjxpwy] {
    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-5x1twjxpwy] {
    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-5x1twjxpwy] {
    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-5x1twjxpwy] {
    background: #0b5d37;
}

.close-button[b-5x1twjxpwy] {
    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-5x1twjxpwy] {
    background: #c9302c;
}

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

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

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

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

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

.sales-table[b-5x1twjxpwy]{
    border: 1px solid lightgray;
    border-collapse: separate;
}
/* /Pages/Terminal/Markets.cshtml.rz.scp.css */
/* =======================[ Layout Structure ]======================= */
.terminal-grid[b-5n0wwuccjx] {
    display: grid;
    grid-template-columns: 290px 1fr;
    grid-template-rows: 90px auto;
    width: 100%;
    height: 100vh;
}

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

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

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

/* =======================[ Ticker Feed ]======================= */
#ticker-feed[b-5n0wwuccjx] {
    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-5n0wwuccjx] {
    opacity: 0;
    animation: fadeIn-b-5n0wwuccjx 0.2s forwards;
}
@keyframes fadeIn-b-5n0wwuccjx {
    to { opacity: 1; }
}

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

.item[b-5n0wwuccjx] {
    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-5n0wwuccjx] { width: 100%; }

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


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


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


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

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

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


/* =======================[ Widgets & Modals ]======================= */
.widget-grid[b-5n0wwuccjx] {
    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-5n0wwuccjx] {
    text-align: center;
    height: 180px;
    border: 1px solid lightgray;
}
.widget-container .widgets-table[b-5n0wwuccjx] {
    width: 100%;
    border: 1px solid #fff;
}


.widgets-table[b-5n0wwuccjx] {
    width: 100%;
    height: auto;
    border: none;
    font-size: 14px;
}
.widgets-table th[b-5n0wwuccjx] { border-top: none; }
.widgets-table th[b-5n0wwuccjx],
.widgets-table td[b-5n0wwuccjx] {
    padding: 3px;
}
.widgets-table th:first-child[b-5n0wwuccjx],
.widgets-table td:first-child[b-5n0wwuccjx] {
    border-left: none;
}
.widgets-table th:last-child[b-5n0wwuccjx],
.widgets-table td:last-child[b-5n0wwuccjx] {
    border-right: none;
}
.widgets-table tr:nth-child(7) td[b-5n0wwuccjx] {
    border-bottom: none;
}

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

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

/* =======================[ Modal Styles ]======================= */
.modal-title[b-5n0wwuccjx] {
    flex: 1;
    text-align: center;
    font-weight: bold;
}
.modal-header[b-5n0wwuccjx] {
    border-bottom: none;
    padding: 15px 0 1px 0;
}
.modal-header .btn-close[b-5n0wwuccjx] {
    position: absolute;
    right: 18px;
    top: 16px;
    z-index: 10;
}
.modal-content[b-5n0wwuccjx] {
    border-radius: 10px;
    overflow: hidden;
}
.modal-body .widget-container[b-5n0wwuccjx] {
    max-height: 300px;
    overflow-y: auto;
}
.modal-lg-custom[b-5n0wwuccjx] { max-width: 500px; }
.modal-dialog-compact[b-5n0wwuccjx] { max-width: 450px; width: 100%; }
.modal-body-compact[b-5n0wwuccjx] { height: 50vh; }
.see-more[b-5n0wwuccjx] {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}
.see-more:hover[b-5n0wwuccjx] {
    text-decoration: underline;
}
.modal-table-wrapper[b-5n0wwuccjx] {
    border: 1px solid lightgrey;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.modal-table-scroll[b-5n0wwuccjx] {
    overflow-y: auto;
    max-height: 100%;
}
.modal-widget-table[b-5n0wwuccjx] { width: 100%; }
.modal-widget-table th[b-5n0wwuccjx],
.modal-widget-table td[b-5n0wwuccjx] { background: #fff; }
.modal-widget-table th[b-5n0wwuccjx] {
    position: sticky;
    top: 0;
    z-index: 100;
    text-align: center;
}
/* /Pages/Terminal/Orders.cshtml.rz.scp.css */
/* =======================[ Order Book Container ]======================= */
.orderbook-container[b-uftub2ayua] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 10px;
}

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

/* =======================[ Order Book Table ]======================= */
.orderbook-table[b-uftub2ayua] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

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

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

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

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

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

.orderbook-table th[b-uftub2ayua],
.orderbook-table td[b-uftub2ayua] {
    padding: 3px;  
}

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

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

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

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