@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* _content/Nau.ComplaintPortal.Web/Components/Layout/Footer.razor.rz.scp.css */
/* 
   Footer Component Styles
   Ensures footer is always at the bottom of the page
*/

.app-footer[b-f2s7ckp6ht] {
    margin-top: auto;
    padding: 1rem 0;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.footer-text[b-f2s7ckp6ht] {
    color: #6c757d;
    font-size: 0.9rem;
}

.footer-brand[b-f2s7ckp6ht] {
    color: var(--cp-teal, #006994);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .app-footer[b-f2s7ckp6ht] {
        padding: 0.75rem 0;
    }

    .footer-text[b-f2s7ckp6ht] {
        font-size: 0.85rem;
    }
}
/* _content/Nau.ComplaintPortal.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* 
   MainLayout - Modern & Clean Theme
   Using Charcoal Gray (#36454F) for sidebar and Off-White (#F8F8F8) for content
*/

.page[b-imp8glg9pf] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-imp8glg9pf] {
    flex: 1;
    background-color: var(--cp-off-white, #F8F8F8);
}

.sidebar[b-imp8glg9pf] {
    background-color: var(--cp-charcoal-gray, #36454F);
}

/* Top row - user actions area with Off-White background */
.top-row[b-imp8glg9pf] {
    background-color: var(--cp-off-white, #F8F8F8);
    border-bottom: 1px solid var(--cp-border-gray, #DCDCDC);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-imp8glg9pf]  a,
.top-row[b-imp8glg9pf]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--cp-teal, #4169E1);
}

.top-row[b-imp8glg9pf]  a:hover,
.top-row[b-imp8glg9pf]  .btn-link:hover {
    text-decoration: underline;
    color: var(--cp-teal-hover, #005780);
}

/* Buttons in top-row - ensure they maintain proper theme colors */
.top-row[b-imp8glg9pf]  .btn-primary {
    background-color: var(--cp-teal, #006994);
    border-color: var(--cp-teal, #006994);
    color: var(--cp-text-light, #FFFFFF);
}

.top-row[b-imp8glg9pf]  .btn-primary:hover {
    background-color: var(--cp-teal-hover, #005780);
    border-color: var(--cp-teal-hover, #005780);
    color: var(--cp-text-light, #FFFFFF);
}

.top-row[b-imp8glg9pf]  .btn-outline-secondary {
    color: var(--cp-charcoal-gray, #36454F);
    border-color: var(--cp-border-gray, #DCDCDC);
}

.top-row[b-imp8glg9pf]  .btn-outline-secondary:hover {
    background-color: var(--cp-charcoal-gray, #36454F);
    border-color: var(--cp-charcoal-gray, #36454F);
    color: var(--cp-text-light, #FFFFFF);
}

.top-row[b-imp8glg9pf]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Content area styling */
article.content[b-imp8glg9pf] {
    background-color: var(--cp-off-white, #F8F8F8);
    color: var(--cp-text-dark, #333333);
}

/* Mobile Responsive - matches Bootstrap breakpoints */
@media (max-width: 767.98px) {

    /* Mobile layout is handled by theme CSS */
    .page[b-imp8glg9pf] {
        flex-direction: column;
    }

    main[b-imp8glg9pf] {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .page[b-imp8glg9pf] {
        flex-direction: row;
    }

    .sidebar[b-imp8glg9pf] {
        width: 280px;
        height: 100vh;
        position: sticky;
        top: 0;
        align-self: flex-start;
    }

    .top-row[b-imp8glg9pf] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-imp8glg9pf]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-imp8glg9pf],
    article[b-imp8glg9pf] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-imp8glg9pf] {
    background: var(--cp-status-danger, #DC3545);
    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;
    color: white;
}

#blazor-error-ui .dismiss[b-imp8glg9pf] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    color: white;
}
/* _content/Nau.ComplaintPortal.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* 
   NavMenu - Modern & Clean Theme
   Using Charcoal Gray (#36454F) background with White (#FFFFFF) text
   Ocean Blue (#006994) for active states
*/

/* Sidebar top row - brand area with Charcoal Gray background */
.top-row[b-3h53lezynt] {
    min-height: 3.5rem;
    background-color: var(--cp-charcoal-gray, #36454F);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hide sidebar brand on mobile since we have mobile top nav */
@media (max-width: 767.98px) {
    .top-row[b-3h53lezynt] {
        display: none !important;
    }
}

.navbar-brand[b-3h53lezynt] {
    font-size: 1.1rem;
    color: var(--cp-text-light, #FFFFFF) !important;
    font-weight: 600;
}

.nav-item[b-3h53lezynt] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-3h53lezynt] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-3h53lezynt] {
    padding-bottom: 1rem;
}

/* Navigation links - White text on Charcoal Gray background */
.nav-item[b-3h53lezynt]  a {
    color: var(--cp-text-light, #FFFFFF);
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    transition: all 0.15s ease-in-out;
}

/* Active state - Ocean Blue background with White text */
.nav-item[b-3h53lezynt]  a.active {
    background-color: var(--cp-teal, #006994);
    color: var(--cp-text-light, #FFFFFF);
    font-weight: 600;
}

/* Hover state - Semi-transparent Ocean Blue */
.nav-item[b-3h53lezynt]  a:hover {
    background-color: rgba(0, 105, 148, 0.2);
    color: var(--cp-text-light, #FFFFFF);
    transform: translateX(4px);
}

/* Nav scrollable - always visible, controlled by parent sidebar */
.nav-scrollable[b-3h53lezynt] {
    display: block !important;
    background-color: var(--cp-charcoal-gray, #36454F);
    width: 100%;
    overflow-y: auto;
}

/* Desktop sidebar */
.sidebar .nav-scrollable[b-3h53lezynt] {
    height: calc(100vh - 3.5rem);
}

/* Mobile view */
@media (max-width: 767.98px) {
    .nav-scrollable[b-3h53lezynt] {
        display: block !important;
        position: relative;
        width: 100%;
        height: 100% !important;
    }

    .nav-item[b-3h53lezynt] {
        display: block !important;
    }

    .nav-item[b-3h53lezynt]  a {
        display: flex !important;
        visibility: visible !important;
    }
}

/* Desktop view */
@media (min-width: 768px) {
    .nav-scrollable[b-3h53lezynt] {
        position: relative;
    }
}
