/* _content/SMR-PricingExecutionApp/Components/BrowsePriceResult.razor.rz.scp.css */

.arrow[b-7fgrt0p5rt] {
    display: inline-block;
    transition: transform 0.2s ease;
}

button[aria-expanded="true"] .arrow[b-7fgrt0p5rt] {
    transform: rotate(90deg);
}

/* Make first column shrink to fit content */
.table td:first-child[b-7fgrt0p5rt],
.table th:first-child[b-7fgrt0p5rt] {
    white-space: nowrap;
    width: 1%;
}

.card-header[b-7fgrt0p5rt] {
    background-color: white;
}

.card-footer[b-7fgrt0p5rt] {
    background-color: white;
}

/* _content/SMR-PricingExecutionApp/Components/DashboardTile.razor.rz.scp.css */
.dashboard-tile[b-eseom1d308] {
    background-color: #0d554f;
    color: linen;
    padding: 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .dashboard-tile:hover[b-eseom1d308] {
        border: solid 1px #0a4b46; 
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

.tile-title[b-eseom1d308] {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.tile-count[b-eseom1d308] {
    font-size: 2rem;
    font-weight: bold;
}
/* _content/SMR-PricingExecutionApp/Components/LoanReviewTable.Razor.rz.scp.css */
.no-border[b-c67vcixtos] {
    border: 0px none white;
}

.bottom-border-only[b-c67vcixtos] {
    border-bottom: 2px solid darkgray;
    border-top: 0px none white;
}

.top-border-only[b-c67vcixtos] {
    border-top: 2px solid darkgray;
    border-bottom: 0px none white;
}

.indent th[b-c67vcixtos],
.indent td[b-c67vcixtos] {
    padding-left: 20px;
}

.table-wrapper[b-c67vcixtos] {
    --header-row-height: 40px; /* used for 2nd header row positioning below */
    max-height: 75vh;
    overflow-y: auto;
}

.table[b-c67vcixtos] {
    border-collapse: separate;
    border-spacing: 0;
}

    .table thead th[b-c67vcixtos] {
        position: sticky;
        background-color: white;
    }

    .table thead tr:first-child th[b-c67vcixtos] {
        position: sticky;
        top: 0;
        z-index: 30;
    }

    .table thead tr:nth-child(2) th[b-c67vcixtos] {
        position: sticky;
        top: var(--header-row-height);
        z-index: 20;
    }

.footer-wrapper[b-c67vcixtos] {
    position: sticky;
    bottom: 0;
    background: white; /* matches page */
    padding: 5px 0;
    z-index: 50; /* above table */
}
/* _content/SMR-PricingExecutionApp/Components/ProductMappingUploadForm.razor.rz.scp.css */
.no-border[b-yhqvogfqk4] {
    border: 0px none white;
}

.bottom-border-only[b-yhqvogfqk4] {
    border-bottom: 2px solid darkgray;
    border-top: 0px none white;
}

.top-border-only[b-yhqvogfqk4] {
    border-top: 2px solid darkgray;
    border-bottom: 0px none white;
}

.indent th[b-yhqvogfqk4],
.indent td[b-yhqvogfqk4] {
    padding-left: 20px;
}

.table-wrapper[b-yhqvogfqk4] {
    --header-row-height: 40px; /* used for 2nd header row positioning below */
    max-height: 75vh;
    overflow-y: auto;
}

.table[b-yhqvogfqk4] {
    border-collapse: separate;
    border-spacing: 0;
}

    .table thead th[b-yhqvogfqk4] {
        position: sticky;
        background-color: white;
    }

    .table thead tr:first-child th[b-yhqvogfqk4] {
        position: sticky;
        top: 0;
        z-index: 30;
    }

    .table thead tr:nth-child(2) th[b-yhqvogfqk4] {
        position: sticky;
        top: var(--header-row-height);
        z-index: 20;
    }

.footer-wrapper[b-yhqvogfqk4] {
    position: sticky;
    bottom: 0;
    background: white; /* matches page */
    padding: 5px 0;
    z-index: 50; /* above table */
}
/* _content/SMR-PricingExecutionApp/Components/ReviewPricing.razor.rz.scp.css */
.card[b-cpawi00dk4] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}
/* _content/SMR-PricingExecutionApp/Shared/MainLayout.razor.rz.scp.css */
/* ---------- Header ---------- */
.header-bar[b-1tpqc2eiyt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 1.5rem;
    background-color: white;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo[b-1tpqc2eiyt] {
    height: 45px;
}

.header-bar nav a[b-1tpqc2eiyt] {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    font-weight: 500;
}

/* ---------- Page layout ---------- */
.page[b-1tpqc2eiyt] {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 60px); /* full height minus header */
}

/* ---------- Main content ---------- */
main[b-1tpqc2eiyt] {
    flex: 1;
    padding: 2rem;
    overflow: auto;
    transition: margin-left 0.3s ease;
}

/* ---------- Mobile responsiveness ---------- */
@media (max-width: 768px) {

    /* On mobile, main content always full width */
    main[b-1tpqc2eiyt] {
        margin-left: 5rem !important;
    }
}
/* _content/SMR-PricingExecutionApp/Shared/NavMenu.razor.rz.scp.css */

/* ---------- Sidebar ---------- */
.sidebar[b-ikqdl0bmw1] {
    width: 250px;
    background-image: linear-gradient( 180deg, #4c8c4a 0%, /* earthy green */
    #064f4f 100% /* dark blue-green */
    );
    transition: width 0.3s ease, padding 0.3s ease;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

    /* Collapsed sidebar */
    .sidebar.collapsed[b-ikqdl0bmw1] {
        width: 5rem; /* just enough to show toggle and icons */
        padding-top: 1rem;
    }

/* ---------- Sidebar toggle button ---------- */
.sidebar-toggle[b-ikqdl0bmw1] {
    position: sticky; /* sticks to top of sidebar */
    top: 0;
    left: 0;
    z-index: 300;
    background: rgba(80, 80, 80, 0.7); /* dark grey, 70% opacity */
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 100%; /* fills sidebar width */
    padding: 0.25rem 0;
    cursor: pointer;
    border-radius: 0;
}

/* ---------- Sidebar nav links ---------- */
.sidebar nav[b-ikqdl0bmw1] {
    margin-top: 1rem; /* start below toggle */
    display: flex;
    flex-direction: column;
}

    .sidebar nav .nav-item[b-ikqdl0bmw1] {
        padding: 0.5rem 1rem;
        display: flex;
        align-items: center;
    }
    
/* ---------- Collapsed sidebar: icons only ---------- */
.sidebar.collapsed nav .link-text[b-ikqdl0bmw1] {
    display: none; /* hide the text span */
}

.sidebar.collapsed nav .nav-link[b-ikqdl0bmw1] {
    justify-content: center; /* center the icon horizontally */
}

.sidebar .nav-link .nav-icon[b-ikqdl0bmw1],
.sidebar .nav-link.active .nav-icon[b-ikqdl0bmw1]
{
    color: linen;
}


.sidebar .nav-link:hover .nav-icon[b-ikqdl0bmw1] {
    font-size: larger;
}

.sidebar .nav-link .link-text[b-ikqdl0bmw1] {
    color: linen;
}

.sidebar .nav-link.active .link-text[b-ikqdl0bmw1] {
    font-weight: bold;
}


/* ---------- Mobile responsiveness ---------- */
@media (max-width: 768px) {
    .sidebar[b-ikqdl0bmw1] {
        position: absolute;
        top: 60px; /* below header */
        left: 0;
        height: calc(100vh - 60px); /* full height minus header */
        z-index: 200;
        width: 5rem; /* collapsed width by default */
        padding-top: 1rem;
    }

        .sidebar nav .link-text[b-ikqdl0bmw1] {
            display: none; /* hide text */
        }

        .sidebar nav .nav-link[b-ikqdl0bmw1] {
            justify-content: center; /* center icon */
        }


}
