@import '_content/Agile.Authentication.UI/Agile.Authentication.UI.tbp56ibmps.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* App Layout */
.app-layout[b-7mytpdhwua] {
    display: flex;
    min-height: 100vh;
}

/* Main Content */
.main-content[b-7mytpdhwua] {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    position: relative;
}

/* Blazor Error UI */
#blazor-error-ui[b-7mytpdhwua] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-7mytpdhwua] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Chat.razor.rz.scp.css */
.chat-page-container[b-y3yzzm3w16] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background-color: white;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* Help toggle button in header */
.btn-help-toggle[b-y3yzzm3w16] {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--agile-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.btn-help-toggle:hover[b-y3yzzm3w16] {
    background: rgba(255, 255, 255, 0.15);
}

.btn-help-toggle.active[b-y3yzzm3w16] {
    color: rgba(255, 255, 255, 0.7);
}

/* Overview card - positioned absolutely so it doesn't affect chat bar centering */
.overview-card[b-y3yzzm3w16] {
    position: absolute;
    top: calc(52px + 1rem);
    left: 1rem;
    right: 1rem;
    max-height: 30vh;
    overflow-y: auto;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    border-left: 4px solid var(--agile-yellow);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    z-index: 5;
}

.overview-close[b-y3yzzm3w16] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}

.overview-close:hover[b-y3yzzm3w16] {
    color: #dc3545;
    background: rgba(0, 0, 0, 0.05);
}

/* Center the input vertically when no messages */
.chat-input-container.centered[b-y3yzzm3w16] {
    margin-top: auto;
    margin-bottom: auto;
}

.overview-text[b-y3yzzm3w16] {
    line-height: 1.7;
    color: #495057;
}

.overview-text h4[b-y3yzzm3w16] {
    color: var(--agile-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overview-text ul[b-y3yzzm3w16] {
    padding-left: 1.5rem;
}

.overview-text li[b-y3yzzm3w16] {
    margin-bottom: 0.5rem;
}

.overview-text strong[b-y3yzzm3w16] {
    color: var(--agile-teal);
}


/* Sidebar expand button (stays in Chat header) */
.sidebar-expand-btn[b-y3yzzm3w16] {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.sidebar-expand-btn:hover[b-y3yzzm3w16] {
    background: rgba(255, 255, 255, 0.15);
}


/* Chat header - matches sidebar header height */
.chat-header[b-y3yzzm3w16] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--agile-teal);
    color: white;
    padding: 0.75rem 1rem;
    min-height: 52px;
    box-sizing: border-box;
}

.chat-header h5[b-y3yzzm3w16] {
    margin: 0;
    flex: 1;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.05rem;
}


/* Scrollable area containing messages and sticky input */
.chat-scroll-area[b-y3yzzm3w16] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Messages area */
.chat-messages[b-y3yzzm3w16] {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: start;
    align-content: start;
    padding: 1rem;
}

.message-content[b-y3yzzm3w16] {
    padding: 0.5rem 1rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: fit-content;
}

.user-message[b-y3yzzm3w16] {
    grid-column: 3 / 6;
    justify-self: end;
    max-width: 100%;
    margin-right: 0.5rem;
}

.ai-message[b-y3yzzm3w16] {
    grid-column: 1 / 6;
    justify-self: start;
    max-width: 100%;
    margin-left: 0.5rem;
}

.user-message .message-content[b-y3yzzm3w16] {
    background-color: white;
    border: 1px solid #dee2e6;
    border-right: 4px solid var(--agile-yellow);
    color: var(--agile-teal-dark);
    border-radius: 8px;
}

.ai-message .message-content[b-y3yzzm3w16] {
    background-color: white;
    border: 1px solid #dee2e6;
    border-left: 4px solid var(--agile-blue);
    color: #333;
    border-radius: 8px;
}

.message-text[b-y3yzzm3w16] {
    line-height: 1.6;
}

/* Subtle notice shown in place of an assistant reply when a run was interrupted
   before any text streamed (backend persists a sentinel to keep history coherent). */
.interrupted-notice[b-y3yzzm3w16] {
    grid-column: 1 / -1;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.25rem 0;
    color: #6c757d;
    font-size: 0.8rem;
    font-style: italic;
}

.message-timestamp[b-y3yzzm3w16] {
    display: block;
    margin-top: 0.25rem;
    opacity: 0.6;
    font-size: 0.75rem;
}


/* Bottom prompt area */
.chat-input-container[b-y3yzzm3w16] {
    position: sticky;
    bottom: 0;
    padding: 0.75rem 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    z-index: 10;
}

.input-row[b-y3yzzm3w16] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

    .input-group[b-y3yzzm3w16] {
        flex: 1;
        border: 1px solid #dee2e6;
        border-radius: 12px;
        padding: 1.25rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        background-color: white;
        display: grid;
        grid-template-rows: auto auto;
        gap: 0.75rem;
    }

        .input-group:focus-within[b-y3yzzm3w16] {
            border-color: var(--agile-teal);
            box-shadow: 0 0 0 3px rgba(23, 130, 140, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .input-group textarea[b-y3yzzm3w16] {
            width: 100%;
            border: none;
            outline: none;
            background-color: transparent;
            padding: 0.5rem;
            font-family: inherit;
            font-size: 1rem;
            resize: none;
            min-height: 40px;
            max-height: 200px;
            overflow-y: auto;
        }

        .input-group textarea:disabled[b-y3yzzm3w16] {
            opacity: 0.6;
            cursor: not-allowed;
        }

    .input-actions[b-y3yzzm3w16] {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .left-actions[b-y3yzzm3w16] {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

        .btn-add[b-y3yzzm3w16] {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            border: 1px solid #dee2e6;
            background-color: white;
            color: #6c757d;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.25rem;
            transition: all 0.2s ease;
        }

        .btn-add:hover:not(:disabled)[b-y3yzzm3w16] {
            background-color: #e8f4f5;
            color: var(--agile-teal);
            border-color: var(--agile-teal);
        }

        .btn-add:disabled[b-y3yzzm3w16] {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-send[b-y3yzzm3w16] {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            border: none;
            background-color: var(--agile-teal);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .btn-send:hover:not(:disabled)[b-y3yzzm3w16] {
            background-color: var(--agile-teal-dark);
        }

        .btn-send:disabled[b-y3yzzm3w16] {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-send.btn-stop[b-y3yzzm3w16] {
            background-color: #dc3545;
        }

        .btn-send.btn-stop:hover[b-y3yzzm3w16] {
            background-color: #bb2d3b;
        }

/* Settings popover */
.settings-wrapper[b-y3yzzm3w16] {
    position: relative;
    color: white;
}

.btn-add.active[b-y3yzzm3w16] {
    background-color: var(--agile-teal);
    color: white;
    border-color: var(--agile-teal);
}

.settings-popover[b-y3yzzm3w16] {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    min-width: 220px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.settings-field[b-y3yzzm3w16] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .settings-field label[b-y3yzzm3w16] {
        font-size: 0.8rem;
        font-weight: 600;
        color: #495057;
    }

    .settings-field input[b-y3yzzm3w16],
    .settings-field select[b-y3yzzm3w16] {
        padding: 6px 10px;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        font-size: 0.85rem;
        font-family: inherit;
        outline: none;
        transition: border-color 0.2s ease;
    }

        .settings-field input:focus[b-y3yzzm3w16],
        .settings-field select:focus[b-y3yzzm3w16] {
            border-color: var(--agile-teal);
        }


/* District search toggle button */
.btn-district-search-toggle[b-y3yzzm3w16] {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    background: white;
    color: #6c757d;
    cursor: pointer;
    padding: 0 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    height: 2.5rem;
    flex-shrink: 0;
}

.btn-district-search-toggle:hover:not(:disabled)[b-y3yzzm3w16] {
    border-color: var(--agile-teal);
    color: var(--agile-teal);
}

.btn-district-search-toggle.active[b-y3yzzm3w16] {
    border-color: var(--agile-teal);
    color: var(--agile-teal);
    background: rgba(23, 130, 140, 0.08);
}

.btn-district-search-toggle:disabled[b-y3yzzm3w16] {
    opacity: 0.5;
    cursor: not-allowed;
}

.district-search-label[b-y3yzzm3w16] {
    white-space: nowrap;
    font-size: 0.78rem;
    font-weight: 500;
    margin-left: 0.3rem;
}

/* Typing indicator */
.typing-indicator[b-y3yzzm3w16] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
}

.typing-dots[b-y3yzzm3w16] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.typing-status[b-y3yzzm3w16] {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}
/* /Components/Pages/DistrictSearch.razor.rz.scp.css */
/* Centered page header */
.header-content[b-mneq7006ry] {
    text-align: center;
}

/* Search Page Styling */
.card-title[b-mneq7006ry] {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: #2C8A94;
}

.form-label[b-mneq7006ry] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.form-control[b-mneq7006ry] {
    font-family: 'Open Sans', sans-serif;
}


.alert[b-mneq7006ry] {
    font-family: 'Open Sans', sans-serif;
}

/* Sortable table columns */
.sortable[b-mneq7006ry] {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.sortable:hover[b-mneq7006ry] {
    background-color: #f0f0f0;
}

.sortable:not(.sorted):hover[b-mneq7006ry]::after {
    content: " ↑↓";
    opacity: 0.5;
    font-size: 1.2em;
    font-weight: bold;
}

.sort-icon[b-mneq7006ry] {
    font-size: 1.2em;
    font-weight: bold;
}

/* Filter Separator */
.filter-separator[b-mneq7006ry] {
    margin: 0.5rem 0 1.5rem 0;
    border: 0;
    border-top: 2px solid #495057;
}

/* Additional Filters Label */
.additional-filters-label[b-mneq7006ry] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #17828B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Responsive Actions column - show on right for desktop, left for mobile */
.actions-desktop[b-mneq7006ry] {
    display: table-cell;
}

.actions-mobile[b-mneq7006ry] {
    display: none;
}

@media (max-width: 820px) {
    .actions-desktop[b-mneq7006ry] {
        display: none;
    }

    .actions-mobile[b-mneq7006ry] {
        display: table-cell;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.search-container[b-c75dnvy0pi] {
    display: grid;
    grid-template-areas:
        "left-sidebar main-content"
        "bottom-sidebar main-content";
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
}

.main-content[b-c75dnvy0pi] {
    grid-area: main-content;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.left-sidebar[b-c75dnvy0pi] {
    grid-area: left-sidebar;
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: fit-content;
}

.bottom-sidebar[b-c75dnvy0pi] {
    grid-area: bottom-sidebar;
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: fit-content;
}

/* Search Section */
.search-section[b-c75dnvy0pi] {
    max-width: 50%;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.search-form-container[b-c75dnvy0pi] {
    text-align: center;
}

/* Search Input */
.search-input-group .search-input[b-c75dnvy0pi] {
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
    width: 100%;
    margin: 0 auto;
    resize: none;
    overflow-y: auto;
}

    .search-input-group .search-input[b-c75dnvy0pi]::placeholder {
        text-align: center;
    }

.search-input-group .search-input:focus[b-c75dnvy0pi] {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 2px 8px rgba(26,115,232,0.25);
}

/* Search Parameters */
.search-params[b-c75dnvy0pi] {
    margin: 1rem 0;
}

.search-params .d-flex[b-c75dnvy0pi] {
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.search-method-group .btn-check:checked + .btn-outline-primary[b-c75dnvy0pi] {
    background-color: #1a73e8;
    border-color: #1a73e8;
    color: white;
    box-shadow: none;
}

.search-method-group .btn-outline-primary[b-c75dnvy0pi] {
    font-size: 0.85rem;
    padding: 0.375rem 0.875rem;
    transition: all 0.2s ease-in-out;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    min-width: 60px;
}

.search-method-group .btn-outline-primary:hover:not(:disabled)[b-c75dnvy0pi] {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
}

.search-method-group .btn-outline-primary:focus[b-c75dnvy0pi] {
    box-shadow: 0 0 0 0.2rem rgba(26,115,232,0.25);
}

.quality-dropdown .btn-outline-secondary[b-c75dnvy0pi] {
    border-radius: 20px;
    font-size: 0.85rem;
    padding: 0.375rem 0.75rem;
    min-width: 110px;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    transition: all 0.2s ease-in-out;
}

.quality-dropdown .btn-outline-secondary:hover[b-c75dnvy0pi] {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
}


.quality-dropdown .btn-outline-secondary:focus[b-c75dnvy0pi] {
    box-shadow: 0 0 0 0.2rem rgba(26,115,232,0.25);
}

.quality-dropdown .dropdown-menu[b-c75dnvy0pi] {
    border-radius: 1rem;
}

.results-input-group[b-c75dnvy0pi] {
    width: 140px;
}

.results-input-group .input-group-text[b-c75dnvy0pi] {
    font-size: 0.85rem;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057
}

.results-input-group .form-control[b-c75dnvy0pi] {
    font-size: 0.85rem;
    border-color: #dee2e6;
    padding: 0.375rem 0.75rem;
}

/* Filter Row */
.filter-row[b-c75dnvy0pi] {
    margin: 1.5rem 0;
}

.filter-dropdown[b-c75dnvy0pi] {
    position: relative;
}

.filter-btn[b-c75dnvy0pi] {
    border-radius: 20px;
    font-size: 0.9rem;
    padding: 0.375rem 0.75rem;
    min-width: 120px;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    transition: all 0.2s ease-in-out;
}

.filter-btn:hover[b-c75dnvy0pi] {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.filter-btn:focus[b-c75dnvy0pi] {
    box-shadow: 0 0 0 0.2rem rgba(26,115,232,0.25);
}

.filter-popout[b-c75dnvy0pi] {
    width: 280px;
    padding: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    max-height: 300px;
}

.filter-options[b-c75dnvy0pi] {
    max-height: 200px;
    overflow-y: auto;
}

.filter-options .form-check[b-c75dnvy0pi] {
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.filter-options .form-check-label[b-c75dnvy0pi] {
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
}

.filter-options .form-check-input[b-c75dnvy0pi] {
    margin-top: 0.25rem;
}

.filter-options .form-check-input:checked[b-c75dnvy0pi] {
    background-color: #1a73e8;
    border-color: #1a73e8;
}

/* Monitor Search Checkbox */
.monitor-check[b-c75dnvy0pi] {
    white-space: nowrap;
}

.monitor-check .form-check-label[b-c75dnvy0pi] {
    font-size: 0.9rem;
    color: #495057;
}

/* Search Button */
.btn-search[b-c75dnvy0pi] {
    background-color: #F5BB2A;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    min-width: 140px;
}

    .btn-search:hover:not(:disabled)[b-c75dnvy0pi] {
        background-color: #fedb3c;
        color: white;
        box-shadow: 0 2px 4px rgba(26,115,232,0.25);
    }

.btn-search:focus[b-c75dnvy0pi] {
    box-shadow: 0 0 0 0.2rem rgba(26,115,232,0.25);
}

.btn-search:disabled[b-c75dnvy0pi] {
    background-color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
}

/* Results Section */
.results-section[b-c75dnvy0pi] {
    max-width: 90%;
    margin: 0 auto;
}

.results-tabs[b-c75dnvy0pi] {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 0;
}

.results-tabs .nav-link[b-c75dnvy0pi] {
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    background: none;
}

.results-tabs .nav-link:hover[b-c75dnvy0pi] {
    border-bottom-color: #dee2e6;
    background: none;
    color: #495057;
}

.results-tabs .nav-link.active[b-c75dnvy0pi] {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
    background: none;
}

.results-content[b-c75dnvy0pi] {
    padding: 2rem 0;
    min-height: 300px;
}

.tab-pane[b-c75dnvy0pi] {
    display: none;
}

.tab-pane.active.show[b-c75dnvy0pi] {
    display: block;
}

/* Results Placeholder States */
.results-placeholder[b-c75dnvy0pi] {
    text-align: center;
}

.empty-state h5[b-c75dnvy0pi] {
    color: #495057;
    margin-bottom: 1rem;
}

.empty-state p[b-c75dnvy0pi] {
    margin-bottom: 0.5rem;
}

.search-report[b-c75dnvy0pi] {
    text-align: left;
}

.search-report h5[b-c75dnvy0pi] {
    color: #1a73e8;
    margin-bottom: 1rem;
}

/* Stats Cards */
.stats-content[b-c75dnvy0pi] {
    text-align: left;
}

.stat-card[b-c75dnvy0pi] {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.stat-card h6[b-c75dnvy0pi] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number[b-c75dnvy0pi] {
    font-size: 2rem;
    font-weight: 600;
    color: #1a73e8;
}

/* Sources Content */
.sources-content[b-c75dnvy0pi] {
    text-align: left;
}

.sources-content h5[b-c75dnvy0pi] {
    color: #1a73e8;
    margin-bottom: 1rem;
}

/* Source Result Cards */
.source-result-card[b-c75dnvy0pi] {
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease-in-out;
}

.source-result-card:hover[b-c75dnvy0pi] {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/*p {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 1.00rem;
    line-height: 1.7;
    color: #222;
    letter-spacing: 0.01em;
    margin-bottom: 0;
}*/

.source-summary[b-c75dnvy0pi] {
    border-bottom: 1px solid #f8f9fa;
    padding-bottom: 1rem;
}

.source-meta .badge[b-c75dnvy0pi] {
    font-size: 0.75rem;
}

.best-quote-preview[b-c75dnvy0pi] {
    background-color: #f8f9fa;
    border-left: 3px solid #1a73e8;
    padding: 0.75rem;
    border-radius: 0 4px 4px 0;
}

/* Embedding Details */
.embedding-detail[b-c75dnvy0pi] {
    background-color: #fafafa;
    border-left: 3px solid #dee2e6;
}

.embedding-detail .card-body[b-c75dnvy0pi] {
    padding: 1rem;
}

.key-quotes .blockquote[b-c75dnvy0pi] {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.original-text[b-c75dnvy0pi] {
    max-height: 300px;
    overflow-y: auto;
    line-height: 1.6;
    white-space: pre-wrap;
}

.full-text-section .btn-link[b-c75dnvy0pi] {
    color: #1a73e8;
    font-weight: 500;
}

.full-text-section .btn-link:hover[b-c75dnvy0pi] {
    color: #1557b0;
}

/* Sidebar Styling */
.sidebar-section[b-c75dnvy0pi] {
    margin-bottom: 2rem;
}

.sidebar-title[b-c75dnvy0pi] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.saved-searches-placeholder[b-c75dnvy0pi],
.search-history-placeholder[b-c75dnvy0pi] {
    text-align: center;
    padding: 1rem 0;
}

.saved-searches-placeholder p[b-c75dnvy0pi],
.search-history-placeholder p[b-c75dnvy0pi] {
    margin: 0;
    font-style: italic;
}

/* Badge styling for filter counts */
.badge.bg-primary[b-c75dnvy0pi] {
    background-color: #1a73e8 !important;
    font-size: 0.7rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-container[b-c75dnvy0pi] {
        grid-template-areas:
            "main-content"
            "left-sidebar"
            "bottom-sidebar";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .search-params .d-flex[b-c75dnvy0pi] {
        flex-direction: column;
        gap: 0.75rem !important;
        align-items: stretch !important;
    }

    .filter-row .d-flex[b-c75dnvy0pi] {
        flex-direction: column;
        gap: 0.5rem !important;
        align-items: stretch !important;
    }

    .filter-btn[b-c75dnvy0pi] {
        min-width: auto;
        width: 100%;
    }

    .monitor-check[b-c75dnvy0pi] {
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .main-content[b-c75dnvy0pi] {
        padding: 1rem;
    }

    .search-input-group .search-input[b-c75dnvy0pi] {
        font-size: 1rem;
        padding: 0.625rem 1rem;
    }

    .btn-search[b-c75dnvy0pi] {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }

    .results-tabs .nav-link[b-c75dnvy0pi] {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
/* /Components/Pages/LimitExceeded.razor.rz.scp.css */
.district-header[b-52laejp9r9] {
    min-height: 160px;
}

.limit-exceeded-card[b-52laejp9r9] {
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.limit-icon[b-52laejp9r9] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.limit-exceeded-card .btn[b-52laejp9r9] {
    min-width: 150px;
}

/* /Components/Pages/OpportunitiesLanding.razor.rz.scp.css */
/* Landing Header */
.landing-header[b-mo7rkhbvc7] {
    background: var(--agile-teal);
    color: white;
    padding: 2rem 0;
    margin-top: -1.1rem;
    margin-bottom: 2rem;
}

.landing-title-block[b-mo7rkhbvc7] {
    flex: 1;
    text-align: center;
}

.landing-title[b-mo7rkhbvc7] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.landing-subtitle[b-mo7rkhbvc7] {
    font-size: 1.1rem;
    color: var(--agile-yellow);
    margin-bottom: 0;
}

/* Empty state */
.topics-empty-state[b-mo7rkhbvc7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    gap: 1rem;
    max-width: 560px;
    margin: 3rem auto 0;
}

.topics-empty-state-title[b-mo7rkhbvc7] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0;
}

.topics-empty-state-subtitle[b-mo7rkhbvc7] {
    color: #555;
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.btn-create-topic-lg[b-mo7rkhbvc7] {
    font-size: 1.05rem;
    padding: 0.75rem 1.75rem;
}

/* Topics grid — structured CSS Grid; sorting maps cleanly to row-major order.
   Cards stretch to row height so each row stays visually aligned. */
.topics-grid[b-mo7rkhbvc7] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

/* Responsive */
@media (max-width: 767.98px) {
    .landing-title[b-mo7rkhbvc7] {
        font-size: 1.4rem;
    }

    .landing-header[b-mo7rkhbvc7] {
        padding: 1.5rem 0;
    }

    .topics-grid[b-mo7rkhbvc7] {
        grid-template-columns: 1fr;
    }

    .landing-header .d-flex[b-mo7rkhbvc7] {
        flex-direction: column;
        gap: 1rem;
    }
}
/* /Components/Pages/OpportunitiesTopicView.razor.rz.scp.css */
/* Dashboard Header */
.dashboard-header[b-etjpw9awxb] {
    background: var(--agile-teal);
    color: white;
    padding: 2rem 0;
}

.last-invocation-chip[b-etjpw9awxb] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    color: #555;
    padding: 0.25rem 0.6rem;
    background: #f1f3f5;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    white-space: nowrap;
}

.last-invocation-label[b-etjpw9awxb] {
    color: #888;
    font-weight: 500;
}

.last-invocation-time[b-etjpw9awxb] {
    color: #333;
    font-weight: 600;
}

.job-running-banner[b-etjpw9awxb] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.85rem;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    border-left: 3px solid var(--agile-yellow);
    border-radius: 4px;
    color: var(--agile-yellow);
    font-size: 0.9rem;
}

.job-running-banner .spinner-border[b-etjpw9awxb] {
    color: var(--agile-yellow);
}

.job-running-banner-text[b-etjpw9awxb] {
    line-height: 1.3;
}

.dashboard-title[b-etjpw9awxb] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dashboard-subtitle[b-etjpw9awxb] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--agile-yellow);
    margin-bottom: 0;
}

/* Table wrapper — horizontal scroll only (scrollbar at the table's bottom);
   the page handles vertical scrolling, so there's a single page vertical scrollbar. */
.table-scroll-wrapper[b-etjpw9awxb] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow-x: auto;
}

/* Research Opportunities Table */
.crosstab-table[b-etjpw9awxb] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
}

    .crosstab-table thead[b-etjpw9awxb] {
        background: #f8f9fa;
    }

    .crosstab-table th[b-etjpw9awxb] {
        position: sticky;
        top: 0;
        z-index: 3;
        background: #f8f9fa;
        padding: 1rem;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #333;
        border-bottom: 2px solid #dee2e6;
        vertical-align: top;
    }

    .crosstab-table td[b-etjpw9awxb] {
        padding: 1.25rem 1rem;
        border-bottom: 1px solid #dee2e6;
        vertical-align: top;
    }

    .crosstab-table tbody tr:nth-child(even)[b-etjpw9awxb] {
        background: #fafbfc;
    }

    .crosstab-table tbody tr:hover[b-etjpw9awxb] {
        background: inherit;
    }

/* Institution Column */
.crosstab-table th.institution-header[b-etjpw9awxb] {
    min-width: 240px;
    border-right: 2px solid #dee2e6;
}

.institution-cell[b-etjpw9awxb] {
    background: white;
    min-width: 240px;
    border-right: 2px solid #dee2e6;
    cursor: pointer;
    transition: background 0.15s;
}

    .institution-cell:hover[b-etjpw9awxb] {
        background: #f1f7f7 !important;
    }

    .institution-cell:focus-visible[b-etjpw9awxb] {
        outline: 2px solid var(--agile-teal);
        outline-offset: -2px;
    }

.crosstab-table tbody tr:nth-child(even) .institution-cell[b-etjpw9awxb] {
    background: #fafbfc;
}

.inst-name[b-etjpw9awxb] {
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

    .institution-cell:hover .inst-name[b-etjpw9awxb] {
        text-decoration: underline;
    }

.inst-address[b-etjpw9awxb] {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.15rem;
}

.inst-county[b-etjpw9awxb] {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.inst-actions[b-etjpw9awxb] {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.view-profile-link[b-etjpw9awxb] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--agile-teal);
    color: white;
    text-decoration: none;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    transition: background 0.2s;
}

    .view-profile-link:hover[b-etjpw9awxb] {
        background: var(--agile-teal-dark);
        color: white;
        text-decoration: none;
    }

.chat-inst-link[b-etjpw9awxb] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e8f4f5;
    color: var(--agile-teal);
    text-decoration: none;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

    .chat-inst-link:hover[b-etjpw9awxb] {
        background: var(--agile-teal);
        color: white;
        text-decoration: none;
    }

.action-break[b-etjpw9awxb] {
    flex-basis: 100%;
    height: 0;
}

.prospect-inst-link[b-etjpw9awxb] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e8f4f5;
    color: var(--agile-teal);
    text-decoration: none;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
}

    .prospect-inst-link:hover[b-etjpw9awxb] {
        background: var(--agile-teal);
        color: white;
        text-decoration: none;
    }

/* Aspect Column Headers */
.aspect-header[b-etjpw9awxb] {
    min-width: 320px;
    border-right: 1px solid #dee2e6;
}

.aspect-header-row[b-etjpw9awxb] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.aspect-header-name[b-etjpw9awxb] {
    flex: 1;
}

.aspect-header-menu[b-etjpw9awxb] {
    position: relative;
}

.aspect-menu-toggle[b-etjpw9awxb] {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0.1rem 0.45rem;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

    .aspect-menu-toggle:hover[b-etjpw9awxb],
    .aspect-menu-toggle[aria-expanded="true"][b-etjpw9awxb] {
        background: #eef4f5;
        border-color: #d0dee0;
        color: var(--agile-teal);
    }

.aspect-menu-dropdown[b-etjpw9awxb] {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    z-index: 10;
    min-width: 140px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0;
}

.aspect-menu-item[b-etjpw9awxb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
}

    .aspect-menu-item:hover[b-etjpw9awxb] {
        background: #f0f4f5;
        color: var(--agile-teal);
    }

/* Opportunity Cells */
.opportunity-cell[b-etjpw9awxb] {
    position: relative;
    min-width: 320px;
    border-right: 1px solid #dee2e6;
    transition: background 0.15s;
    cursor: pointer;
}

    .opportunity-cell:hover[b-etjpw9awxb] {
        background: #f0f4f5;
    }

.cell-content[b-etjpw9awxb] {
    border-left: 4px solid var(--agile-yellow);
    padding-left: 0.75rem;
    transition: border-color 0.2s;
}

    .cell-content.downvoted[b-etjpw9awxb] {
        border-left-color: #ccc;
    }

    .cell-content.upvoted[b-etjpw9awxb] {
        border-left-color: #2e7d32;
    }

.opportunity-cell.rejected[b-etjpw9awxb] {
    background: #fdecea;
}

.rejected-badge[b-etjpw9awxb] {
    display: inline-block;
    background: #c0392b;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.1rem 0.45rem;
    border-radius: 3px;
    margin-bottom: 0.35rem;
}

.cell-title[b-etjpw9awxb] {
    font-weight: 700;
    color: var(--agile-teal);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.cell-score[b-etjpw9awxb] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--agile-teal-dark);
    background: #e8f3f3;
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
    margin-bottom: 0.5rem;
}

.cell-date[b-etjpw9awxb] {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.cell-summary[b-etjpw9awxb] {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.view-opportunity-label[b-etjpw9awxb] {
    color: var(--agile-teal);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

    .view-opportunity-label[b-etjpw9awxb]::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .view-opportunity-label:hover[b-etjpw9awxb] {
        text-decoration: underline;
        color: var(--agile-teal-dark);
    }

.cell-no-data[b-etjpw9awxb] {
    color: #999;
    font-style: italic;
    font-size: 0.85rem;
    padding: 1rem 0;
}

/* Cell Actions Row */
.cell-actions[b-etjpw9awxb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

/* Feedback Buttons */
.feedback-buttons[b-etjpw9awxb] {
    display: flex;
    gap: 0.4rem;
    position: relative;
    z-index: 2;
}

.feedback-btn[b-etjpw9awxb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s, background 0.2s;
}

    .feedback-btn:hover[b-etjpw9awxb] {
        border-color: var(--agile-teal);
        background: #f0f8f8;
    }

    .feedback-btn.active[b-etjpw9awxb] {
        border-color: var(--agile-teal);
        background: #e0f2f2;
    }

/* Discovery dispositioning */
.opportunity-cell.has-disposition .cell-content[b-etjpw9awxb] {
    border-left-color: var(--agile-teal);
}

/* Removed / sleeping cells stay visible but de-emphasized. */
.cell-content.dispositioned-dim[b-etjpw9awxb] {
    opacity: 0.55;
}

.cell-title.cell-title-removed[b-etjpw9awxb] {
    text-decoration: line-through;
}

/* Status badge + thumbs grouped together on the right of the cell actions row.
   The per-cell status control itself lives in DispositionStatusControl.razor(.css). */
.cell-actions-right[b-etjpw9awxb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Opportunity-level status, below the institution action links. */
.inst-status[b-etjpw9awxb] {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.6rem;
}

/* Single-height status filter that opens a checkbox dropdown. */
.status-filter[b-etjpw9awxb] {
    position: relative;
}

.status-filter-toggle[b-etjpw9awxb] {
    min-width: 130px;
    text-align: start;
    cursor: pointer;
    background-color: #fff;
}

/* Transparent catcher so an outside click closes the menu. */
.status-filter-backdrop[b-etjpw9awxb] {
    position: fixed;
    inset: 0;
    z-index: 1040;
}

.status-filter-menu[b-etjpw9awxb] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 1050;
    min-width: 200px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    padding: 0.35rem;
}

.status-filter-option[b-etjpw9awxb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem;
    margin: 0;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
}

    .status-filter-option:hover[b-etjpw9awxb] {
        background: #f0f4f5;
    }

    .status-filter-option input[b-etjpw9awxb] {
        cursor: pointer;
    }

/* Responsive */
@media (max-width: 767.98px) {
    .dashboard-title[b-etjpw9awxb] {
        font-size: 1.4rem;
    }

    .dashboard-header[b-etjpw9awxb] {
        padding: 1.5rem 0;
    }
}
/* /Components/Pages/OpportunityAspect.razor.rz.scp.css */
/* Discovery card -- the headline payload of this view. */
.discovery-card[b-b9rn3yg868] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--agile-yellow);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s;
}

    .discovery-card.downvoted[b-b9rn3yg868] {
        border-left-color: #ccc;
    }

    .discovery-card.upvoted[b-b9rn3yg868] {
        border-left-color: #2e7d32;
    }

.discovery-title[b-b9rn3yg868] {
    font-weight: 700;
    color: var(--agile-teal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.discovery-meta[b-b9rn3yg868] {
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: #777;
}

.discovery-meta-label[b-b9rn3yg868] {
    font-weight: 600;
    color: #555;
}

.discovery-summary[b-b9rn3yg868] {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.discovery-report[b-b9rn3yg868] {
    line-height: 1.7;
    color: #333;
}

/* Next Steps */
.next-steps-section[b-b9rn3yg868] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.next-steps-header[b-b9rn3yg868] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.next-steps-actions[b-b9rn3yg868] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Citations */
.citations-section[b-b9rn3yg868] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.citations-header[b-b9rn3yg868] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.source-documents-list[b-b9rn3yg868] {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0;
}

    .source-documents-list li[b-b9rn3yg868] {
        margin-bottom: 0.4rem;
        line-height: 1.5;
        word-break: break-word;
    }

/* Internal data-URI citations (pers://, inst://) open the citation viewer; styled as a link. */
.citation-source-link[b-b9rn3yg868] {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    text-align: left;
    color: var(--agile-teal-dark);
    text-decoration: underline;
    cursor: pointer;
    word-break: break-word;
}

    .citation-source-link:hover[b-b9rn3yg868] {
        color: var(--agile-teal);
    }

@media (max-width: 767.98px) {
    .discovery-card[b-b9rn3yg868] {
        padding: 1.25rem;
    }

    .discovery-title[b-b9rn3yg868] {
        font-size: 1.25rem;
    }
}
/* /Components/Pages/OpportunitySummary.razor.rz.scp.css */
/* Overall intelligence rollup (sweep hit) */
.institution-overview[b-gg7nmwjrv1] {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--agile-yellow);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.overview-heading[b-gg7nmwjrv1] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    margin: 0 0 0.75rem;
}

.overview-body[b-gg7nmwjrv1] {
    color: #333;
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Aspect cards -- entire card is the click target */
.aspect-summaries[b-gg7nmwjrv1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 2rem;
}

.aspect-card-clickable[b-gg7nmwjrv1] {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

    .aspect-card-clickable:hover[b-gg7nmwjrv1] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        background: #f1f7f7;
    }

    .aspect-card-clickable:focus-visible[b-gg7nmwjrv1] {
        outline: 2px solid var(--agile-teal);
        outline-offset: 2px;
    }

.aspect-card-chevron[b-gg7nmwjrv1] {
    color: var(--agile-teal);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
    transition: transform 0.15s ease;
}

.aspect-card-clickable:hover .aspect-card-chevron[b-gg7nmwjrv1] {
    transform: translateX(3px);
}

.summary-empty[b-gg7nmwjrv1] {
    color: #888;
    font-style: italic;
    padding: 2rem 0;
    text-align: center;
}
/* /Components/Pages/ResearchSampleResults.razor.rz.scp.css */
.sample-subtitle[b-xhfpwtwfhf] {
    color: var(--agile-yellow);
    font-size: 1.05rem;
    font-style: italic;
    margin: 0.5rem 0 0;
    letter-spacing: 0.25px;
}

.sample-page[b-xhfpwtwfhf] {
    padding-bottom: 3rem;
}

/* Empty / no-run state */
.sample-empty[b-xhfpwtwfhf] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 3rem 2rem;
    margin: 1rem auto 1.5rem;
    max-width: 640px;
}

.page-heading-dark[b-xhfpwtwfhf] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--agile-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Card grid */
.sample-cards-grid[b-xhfpwtwfhf] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .sample-cards-grid[b-xhfpwtwfhf] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .sample-cards-grid[b-xhfpwtwfhf] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .sample-cards-grid[b-xhfpwtwfhf] {
        grid-template-columns: 1fr;
    }
}

.sample-card[b-xhfpwtwfhf] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    border-top: 4px solid var(--agile-yellow);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sample-card:hover[b-xhfpwtwfhf] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sample-card-header[b-xhfpwtwfhf] {
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.sample-card-name[b-xhfpwtwfhf] {
    font-weight: 700;
    color: var(--agile-teal);
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.sample-card-address[b-xhfpwtwfhf] {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.35;
}

.sample-card-body[b-xhfpwtwfhf] {
    padding: 0.9rem;
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #333;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.sample-card-intel[b-xhfpwtwfhf] {
    margin: 0 0 0.6rem;
}

.sample-card-intel:last-child[b-xhfpwtwfhf] {
    margin-bottom: 0;
}

/* Tips block */
.sample-tips[b-xhfpwtwfhf] {
    background: #fffbe6;
    border-left: 4px solid var(--agile-yellow);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.sample-tips-lead[b-xhfpwtwfhf] {
    margin: 0;
    color: #444;
    line-height: 1.55;
}

/* Action bar */
.sample-actions[b-xhfpwtwfhf] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}
/* /Components/Shared/AppSidebar.razor.rz.scp.css */
/* Sidebar */
.sidebar[b-3nsi3m59vq] {
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width 0.25s ease, min-width 0.25s ease;
    position: sticky;
    top: 0;
    height: 100vh;
}

    .sidebar.open[b-3nsi3m59vq] {
        width: 320px;
        min-width: 320px;
    }

    .sidebar.collapsed[b-3nsi3m59vq] {
        width: 56px;
        min-width: 56px;
    }

/* Sidebar Header */
.sidebar-header[b-3nsi3m59vq] {
    background: var(--agile-teal);
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar.open .sidebar-header[b-3nsi3m59vq] {
    justify-content: space-between;
}

    .sidebar-header h4[b-3nsi3m59vq] {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        white-space: nowrap;
    }

.sidebar-hamburger[b-3nsi3m59vq] {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    transition: background 0.2s;
}

    .sidebar-hamburger:hover[b-3nsi3m59vq] {
        background: rgba(255,255,255,0.15);
    }

/* Sidebar Nav */
.sidebar-nav[b-3nsi3m59vq] {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* App Nav Items */
.sidebar-app-item[b-3nsi3m59vq] {
    display: flex;
    align-items: center;
    padding: 0;
    color: #495057;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}

    .sidebar-app-item:hover[b-3nsi3m59vq] {
        background: #e9ecef;
        color: #495057;
    }

    .sidebar-app-item.active[b-3nsi3m59vq] {
        border-left-color: var(--agile-teal);
        background: rgba(23, 130, 140, 0.08);
        color: var(--agile-teal);
    }

.sidebar-app-link[b-3nsi3m59vq] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    flex: 1;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

    .sidebar-app-link:hover[b-3nsi3m59vq] {
        text-decoration: none;
        color: inherit;
    }

.sidebar-app-icon[b-3nsi3m59vq] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-app-label[b-3nsi3m59vq] {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.sidebar-dropdown-toggle[b-3nsi3m59vq] {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease, color 0.15s;
}

.sidebar-app-item:hover .sidebar-dropdown-toggle[b-3nsi3m59vq] {
    opacity: 1;
    animation: caret-flash-b-3nsi3m59vq 0.4s ease;
}

.sidebar-dropdown-toggle.expanded[b-3nsi3m59vq] {
    opacity: 1;
}

@keyframes caret-flash-b-3nsi3m59vq {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.15); }
    100% { opacity: 1; transform: scale(1); }
}

    .sidebar-dropdown-toggle:hover[b-3nsi3m59vq] {
        color: var(--agile-teal);
    }

[b-3nsi3m59vq] .chevron-collapsed {
    transform: rotate(-90deg);
}

[b-3nsi3m59vq] .icon {
    transition: transform 0.2s ease;
}

.sidebar.collapsed .sidebar-app-item[b-3nsi3m59vq] {
    justify-content: center;
}

.sidebar.collapsed .sidebar-app-link[b-3nsi3m59vq] {
    justify-content: center;
    padding: 0.75rem 0.5rem;
    gap: 0;
}

/* Subsection under Opportunities */
.sidebar-subsection[b-3nsi3m59vq] {
    padding: 0.5rem 0.75rem 0.75rem 2.75rem;
    border-bottom: 1px solid #dee2e6;
}

.sidebar-sub-item[b-3nsi3m59vq] {
    margin-bottom: 0.5rem;
}

.sidebar-sub-header[b-3nsi3m59vq] {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.25rem;
}

.sidebar-sub-link[b-3nsi3m59vq] {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--agile-teal);
    text-decoration: none;
    transition: color 0.15s;
}

    .sidebar-sub-link:hover[b-3nsi3m59vq] {
        color: var(--agile-teal-dark);
        text-decoration: none;
    }

.sidebar-topic-title[b-3nsi3m59vq] {
    font-weight: 600;
    color: var(--agile-teal-dark);
    font-size: 0.85rem;
    line-height: 1.4;
}

.sidebar-topic-link[b-3nsi3m59vq] {
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
    margin-bottom: 0.15rem;
    transition: color 0.15s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .sidebar-topic-link:hover[b-3nsi3m59vq] {
        color: var(--agile-teal);
        text-decoration: none;
    }

    .sidebar-topic-link.active[b-3nsi3m59vq] {
        color: var(--agile-teal);
        border-left: 2px solid var(--agile-yellow);
        padding-left: 0.5rem;
    }

.sidebar-empty[b-3nsi3m59vq] {
    font-size: 0.825rem;
    color: #aaa;
    font-style: italic;
}

.sidebar-new-chat-btn[b-3nsi3m59vq] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-style: italic;
    color: var(--agile-teal-dark);
    text-decoration: none;
    padding: 0.35rem 0;
    margin-bottom: 0.4rem;
}

.sidebar-new-chat-btn:hover[b-3nsi3m59vq] {
    color: var(--agile-teal);
}

/* Settings pushed to bottom */
.sidebar-app-bottom[b-3nsi3m59vq] {
    margin-top: auto;
    border-top: 1px solid #dee2e6;
}
/* /Components/Shared/ChatSidebar.razor.rz.scp.css */
/* Sidebar controls */
.sidebar-collapse-btn[b-g5iw2tw9v3] {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.sidebar-collapse-btn:hover[b-g5iw2tw9v3] {
    background: rgba(255, 255, 255, 0.15);
}

/* Chat history sidebar items */
.new-chat-btn[b-g5iw2tw9v3] {
    font-style: italic;
}

.chat-list-item[b-g5iw2tw9v3] {
    display: flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}

.chat-list-item:hover[b-g5iw2tw9v3] {
    background: rgba(245, 187, 42, 0.12);
    border-left-color: var(--agile-yellow);
}

.chat-list-item.active[b-g5iw2tw9v3] {
    background: rgba(245, 187, 42, 0.18);
    border-left-color: var(--agile-yellow);
}

.chat-list-link[b-g5iw2tw9v3] {
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: #495057;
    font-size: 0.85rem;
    line-height: 1.4;
}

.chat-list-item.active .chat-list-link[b-g5iw2tw9v3] {
    font-weight: 600;
    color: var(--agile-teal);
}

.chat-menu-wrapper[b-g5iw2tw9v3] {
    position: relative;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.chat-list-item:hover .chat-menu-wrapper[b-g5iw2tw9v3] {
    opacity: 1;
}

.chat-menu-trigger[b-g5iw2tw9v3] {
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    padding: 0.15rem 0.35rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.chat-menu-trigger:hover[b-g5iw2tw9v3] {
    background: rgba(0, 0, 0, 0.08);
    color: #333;
}

.chat-menu-popover[b-g5iw2tw9v3] {
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    min-width: 120px;
    padding: 0.25rem 0;
}

.chat-menu-item[b-g5iw2tw9v3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.4rem 0.75rem;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.8rem;
    color: #495057;
    transition: background 0.15s;
}

.chat-menu-item:hover[b-g5iw2tw9v3] {
    background: #f0f0f0;
}

.chat-menu-delete:hover[b-g5iw2tw9v3] {
    color: #dc3545;
}

.chat-rename-input[b-g5iw2tw9v3] {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--agile-teal);
    border-radius: 4px;
    padding: 0.2rem 0.4rem;
    font-size: 0.85rem;
    outline: none;
}
/* /Components/Shared/CitationViewerModal.razor.rz.scp.css */
.citation-backdrop[b-l7ebz9j7z5] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.citation-modal[b-l7ebz9j7z5] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    padding: 1.5rem 1.5rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    width: 100%;
    max-width: 760px;
    max-height: 88vh;
}

.citation-close[b-l7ebz9j7z5] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.citation-close:hover[b-l7ebz9j7z5] {
    background: #f1f3f5;
    color: #333;
}

.citation-title[b-l7ebz9j7z5] {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0 0 0.15rem;
    padding-right: 1.5rem;
}

.citation-subtitle[b-l7ebz9j7z5] {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.citation-body[b-l7ebz9j7z5] {
    overflow-y: auto;
    flex: 1 1 auto;
    padding-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}

.citation-empty[b-l7ebz9j7z5] {
    color: #777;
    text-align: center;
    padding: 1.5rem 0;
    margin: 0;
}

.citation-meta[b-l7ebz9j7z5] {
    font-size: 0.78rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
}

.citation-source-text[b-l7ebz9j7z5] {
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
}

.citation-fields-table[b-l7ebz9j7z5] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

    .citation-fields-table tr[b-l7ebz9j7z5] {
        border-bottom: 1px solid #f0f1f3;
    }

    .citation-fields-table th[b-l7ebz9j7z5] {
        text-align: left;
        font-weight: 600;
        color: #555;
        padding: 0.35rem 0.75rem 0.35rem 0;
        vertical-align: top;
        white-space: nowrap;
        width: 1%;
    }

    .citation-fields-table td[b-l7ebz9j7z5] {
        padding: 0.35rem 0;
        color: #333;
        vertical-align: top;
        word-break: break-word;
    }

.citation-actions[b-l7ebz9j7z5] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding-top: 0.85rem;
    margin-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}
/* /Components/Shared/ConfirmModal.razor.rz.scp.css */
.confirm-modal-backdrop[b-t772wj6f3v] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-modal[b-t772wj6f3v] {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    min-width: 360px;
    max-width: 520px;
}

.confirm-modal-close[b-t772wj6f3v] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.confirm-modal-close:hover[b-t772wj6f3v] {
    background: #f1f3f5;
    color: #333;
}

.confirm-modal-title[b-t772wj6f3v] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0 0 0.4rem;
    text-align: center;
}

.confirm-modal-subheader[b-t772wj6f3v] {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.75rem;
    text-align: center;
}

.confirm-modal-body[b-t772wj6f3v] {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-align: center;
}

.confirm-modal-actions[b-t772wj6f3v] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* /Components/Shared/CopyTopicModal.razor.rz.scp.css */
.copy-topic-backdrop[b-yyaschv1ix] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-topic-modal[b-yyaschv1ix] {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    min-width: 360px;
    max-width: 520px;
}

.copy-topic-close[b-yyaschv1ix] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.copy-topic-close:hover[b-yyaschv1ix] {
    background: #f1f3f5;
    color: #333;
}

.copy-topic-title[b-yyaschv1ix] {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0 0 1rem;
    text-align: center;
}

.copy-topic-body[b-yyaschv1ix] {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 auto 1.25rem;
    text-align: left;
    max-width: 440px;
}

.copy-topic-body p[b-yyaschv1ix] {
    margin: 0 0 0.85rem;
}

.copy-topic-body p:last-child[b-yyaschv1ix] {
    margin-bottom: 0;
}

.copy-topic-actions[b-yyaschv1ix] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* /Components/Shared/DispositionStatusControl.razor.rz.scp.css */
.disposition-menu[b-l7f0s2sgcj] {
    position: relative;
    z-index: 3;
}

/* While open, lift the control above sibling controls so its fixed backdrop/popover
   (z-index 1050/1060, trapped inside this stacking context) actually cover the other
   status pills on the page instead of being painted over by ones later in the DOM. */
.disposition-menu-open[b-l7f0s2sgcj] {
    z-index: 1060;
}

/* Status pill (the toggle button), coloured by status. */
.status-pill[b-l7f0s2sgcj] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

    .status-pill:hover:not(:disabled)[b-l7f0s2sgcj] {
        border-color: var(--agile-teal);
    }

    .status-pill:disabled[b-l7f0s2sgcj] {
        opacity: 0.5;
        cursor: default;
    }

.status-pill-caret[b-l7f0s2sgcj] {
    font-size: 0.6rem;
    line-height: 1;
}

.disposition-new[b-l7f0s2sgcj] { background: #f6c344; color: #5c4500; }
.disposition-removed[b-l7f0s2sgcj] { background: #f8d7da; color: #842029; }
.disposition-reviewed[b-l7f0s2sgcj] { background: var(--agile-blue); color: #fff; }
.disposition-responded[b-l7f0s2sgcj] { background: var(--agile-teal); color: #fff; }
.disposition-sleeping[b-l7f0s2sgcj] { background: #e2e3e5; color: #41464b; }
.disposition-awakened[b-l7f0s2sgcj] { background: var(--agile-yellow); color: #5c4d00; }

/* Backdrop + fixed popover so the menu is never clipped by a scroll container. */
.disposition-backdrop[b-l7f0s2sgcj] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.15);
}

.disposition-dropdown[b-l7f0s2sgcj] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1060;
    min-width: 240px;
    max-width: 320px;
    max-height: 80vh;
    overflow-y: auto;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    padding: 0.3rem;
    text-align: left;
}

.disposition-popover-title[b-l7f0s2sgcj] {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--agile-teal);
    padding: 0.4rem 0.6rem 0.5rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0.3rem;
}

.disposition-item[b-l7f0s2sgcj] {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 0.45rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
}

    .disposition-item:hover[b-l7f0s2sgcj] {
        background: #f0f4f5;
        color: var(--agile-teal);
    }

.disposition-item-active[b-l7f0s2sgcj] {
    background: #e0f2f2;
    color: var(--agile-teal);
    font-weight: 600;
}

.disposition-submenu-caret[b-l7f0s2sgcj] {
    color: #6c757d;
    font-size: 0.75rem;
}

.disposition-sleep-submenu[b-l7f0s2sgcj] {
    border-left: 2px solid #e9ecef;
    margin: 0.1rem 0 0.1rem 0.4rem;
}

.disposition-group-label[b-l7f0s2sgcj] {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #6c757d;
    padding: 0.25rem 0.6rem 0.1rem;
}

.disposition-custom-sleep[b-l7f0s2sgcj] {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    padding: 0.25rem 0.6rem;
}

    .disposition-custom-sleep .form-control[b-l7f0s2sgcj] {
        flex: 1 1 auto;
        min-width: 0;
    }

/* Teal/clickable once a date is entered; muted while disabled. */
.disposition-until-btn[b-l7f0s2sgcj] {
    flex: 0 0 auto;
    background: var(--agile-teal);
    border: 1px solid var(--agile-teal);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

    .disposition-until-btn:hover:not(:disabled)[b-l7f0s2sgcj] {
        background: var(--agile-teal-dark);
        border-color: var(--agile-teal-dark);
        color: #fff;
    }

    .disposition-until-btn:disabled[b-l7f0s2sgcj] {
        background: #e9ecef;
        border-color: #dee2e6;
        color: #adb5bd;
        cursor: not-allowed;
    }
/* /Components/Shared/DistrictProfileContent.razor.rz.scp.css */
/* District Profile Header */
.district-header[b-netuj46feo] {
    background: var(--agile-teal);
    color: white;
    padding: 2rem 0;
    margin: 0;
    margin-top: -1.1rem;
    margin-bottom: 2rem;
}

/* Back button - inline with expand/collapse buttons, match their styling */
.back-button-inline[b-netuj46feo] {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    text-decoration: none;
    margin: 0;
    vertical-align: middle;
}

.back-button-inline:hover[b-netuj46feo] {
    color: white;
    text-decoration: none;
}

.back-button-inline i[b-netuj46feo] {
    margin-right: 0.5rem;
}

.district-title[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.district-type[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.district-type .parent-link[b-netuj46feo] {
    color: var(--agile-yellow) !important;
    text-decoration: underline;
}

.district-type .parent-link:hover[b-netuj46feo] {
    color: var(--agile-yellow-hover) !important;
}

.district-subtitle[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--agile-yellow) !important;
}

.district-subtitle a[b-netuj46feo] {
    color: var(--agile-yellow) !important;
    text-decoration: underline;
}

.district-subtitle a:hover[b-netuj46feo] {
    color: var(--agile-yellow-hover) !important;
}

/* Page Heading */
.page-heading[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Quick Stats Cards */
.quick-stats .stat-card[b-netuj46feo] {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--agile-yellow);
}

.quick-stats .stat-card:hover[b-netuj46feo] {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.stat-value[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--agile-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Demographics Circles */
.demo-circles[b-netuj46feo] {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    min-height: 120px;
    align-items: center;
}

.demo-circles-compact[b-netuj46feo] {
    gap: 0.5rem;
}

.demo-circle[b-netuj46feo] {
    flex: 1;
    min-width: 80px;
    max-width: 100px;
    text-align: center;
}

/* Contact info - separate row */
.contact-info[b-netuj46feo] {
    margin-top: 0.5rem;
}

/* Header controls row */
.header-controls[b-netuj46feo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.section-controls[b-netuj46feo] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

/* Small screens - responsive layout */
@media (max-width: 768px) {
    .contact-info[b-netuj46feo] {
        text-align: center;
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }

    .header-controls[b-netuj46feo] {
        justify-content: center;
        margin-top: 1rem;
    }

    .section-controls[b-netuj46feo] {
        justify-content: center;
    }

    .section-controls button[b-netuj46feo],
    .back-button-inline[b-netuj46feo] {
        padding: 0.375rem 0.75rem;
    }

    .demo-circles[b-netuj46feo] {
        gap: 1rem;
        justify-content: center;
    }

    .demo-circle[b-netuj46feo] {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 70px;
        max-width: 90px;
    }

    .demo-circles-compact .demo-circle[b-netuj46feo] {
        flex: 0 0 calc(33.333% - 0.5rem);
        min-width: 60px;
        max-width: 80px;
    }

    .demo-circles .circle-chart[b-netuj46feo] {
        width: 70px;
        height: 70px;
    }

    .demo-circles .circle-text[b-netuj46feo] {
        font-size: 0.85rem;
    }

    .demo-label[b-netuj46feo] {
        font-size: 0.75rem;
    }

    .programs-container .circle-chart[b-netuj46feo] {
        width: 70px;
        height: 70px;
    }

    .programs-container .circle-text[b-netuj46feo] {
        font-size: 0.85rem;
    }

    .stat-value[b-netuj46feo] {
        font-size: 1.5rem;
    }

    .stat-label[b-netuj46feo] {
        font-size: 0.75rem;
    }

    .quick-stats .stat-card[b-netuj46feo] {
        padding: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 575px) {
    .section-controls button[b-netuj46feo],
    .back-button-inline[b-netuj46feo] {
        padding: 0.25rem 0.5rem;
    }

    /* Two circles per row on very small screens */
    .demo-circle[b-netuj46feo] {
        flex: 0 0 calc(50% - 1rem);
    }

    .demo-circles-compact .demo-circle[b-netuj46feo] {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

.circle-chart[b-netuj46feo] {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 0.5rem;
}

.circle-chart svg[b-netuj46feo] {
    display: block;
    width: 100%;
    height: 100%;
}

.circle-bg[b-netuj46feo] {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 10;
}

.circle-progress[b-netuj46feo] {
    fill: none;
    stroke-width: 10;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1s ease-in-out;
}

.circle-text[b-netuj46feo] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1A1A1A;
}

.demo-label[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.2;
    font-weight: 600;
}

/* Federal Programs */
.programs-container[b-netuj46feo] {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem 0;
    align-items: center;
}

.program-item[b-netuj46feo] {
    display: flex;
    align-items: center;
    gap: 0;
}

.program-legend[b-netuj46feo] {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.legend-line[b-netuj46feo] {
    width: 25px;
    height: 2px;
    background-color: #000;
}

.legend-text[b-netuj46feo] {
    margin-left: 10px;
}

.program-name[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.3;
}

.program-count[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    color: #1A1A1A;
    line-height: 1.3;
}

/* Personnel Cards */
.personnel-card[b-netuj46feo] {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--agile-yellow);
}

.personnel-name[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.personnel-title[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.personnel-email a[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: var(--agile-teal);
}

/* Prospect buttons */
.prospect-header-btn[b-netuj46feo],
.prospect-section-btn[b-netuj46feo],
.prospect-person-btn[b-netuj46feo],
.roster-header-btn[b-netuj46feo] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.prospect-person-btn[b-netuj46feo] {
    margin-top: 0.75rem;
}

.personnel-crm-badge[b-netuj46feo] {
    display: inline-block;
    margin-top: 0.75rem;
}

/* Strategic Priorities */
.priority-card[b-netuj46feo] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--agile-yellow);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.priority-name[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: var(--agile-teal);
    margin-bottom: 0.5rem;
}

.priority-description[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.priority-goals[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.priority-goals li[b-netuj46feo] {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Proficiency Bars */
#student-proficiency .form-label[b-netuj46feo] {
    font-weight: 700;
}

.proficiency-container[b-netuj46feo] {
    position: relative;
    padding-top: 30px;
    padding-bottom: 25px;
}

.proficiency-bar[b-netuj46feo] {
    background: linear-gradient(90deg, #1278a8 0%, var(--agile-blue) 100%) !important;
}

/* District Percentage Marker */
.district-percentage[b-netuj46feo] {
    position: absolute;
    top: 0;
    transform: translateX(calc(-50% - 1.5px));
    z-index: 5;
}

.district-label[b-netuj46feo] {
    font-size: 1rem;
    color: #000000;
    white-space: nowrap;
    text-align: center;
    font-weight: 400;
    margin-bottom: 2px;
}

.district-line[b-netuj46feo] {
    width: 3px;
    height: 20px;
    background-color: var(--agile-blue);
    margin: 0 auto;
}

/* State Average Marker */
.state-marker[b-netuj46feo] {
    position: absolute;
    top: 30px;
    transform: translateX(-50%);
    z-index: 10;
}

.state-line[b-netuj46feo] {
    width: 3px;
    height: 30px;
    background-color: var(--agile-gold);
    margin: 0 auto;
}

.state-label[b-netuj46feo] {
    font-size: 1rem;
    color: #000000;
    white-space: nowrap;
    text-align: center;
    margin-top: 2px;
    font-weight: 400;
}

/* Card Headers */
.card-header h5[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chevron[b-netuj46feo] {
    color: var(--agile-teal);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.card-header[b-netuj46feo] {
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.card-header:hover[b-netuj46feo] {
    background-color: #f0f7f8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-header:hover .chevron[b-netuj46feo] {
    color: var(--agile-teal-dark);
    transform: scale(1.2);
}

/* Source Documents List */
.source-documents-list[b-netuj46feo] {
    list-style: none;
    padding-left: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.source-documents-list li[b-netuj46feo] {
    margin-bottom: 0.5rem;
}

.source-documents-list a[b-netuj46feo] {
    color: var(--agile-teal);
    text-decoration: none;
}

.source-documents-list a:hover[b-netuj46feo] {
    text-decoration: underline;
}

/* Loading State */
.loading[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* Fiscal Information */
.fiscal-amount[b-netuj46feo] {
    color: var(--agile-blue);
    font-weight: 600;
}

.fiscal-section-header[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #000;
    padding-top: 0.75rem;
}

.fiscal-indent[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    padding-left: 2rem;
}

/* Fiscal table header */
.fiscal-header-source[b-netuj46feo] {
    background-color: var(--agile-gold);
    width: 75%;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    padding: 0.75rem;
    border-bottom: none;
}

.fiscal-header-amount[b-netuj46feo] {
    background-color: var(--agile-blue);
    width: 25%;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    padding: 0.75rem;
    border-bottom: none;
}

/* Fiscal table striping */
#fiscal-table tbody tr:nth-child(odd)[b-netuj46feo] {
    background-color: #f8f9fa;
}

#fiscal-table tbody tr:nth-child(even)[b-netuj46feo] {
    background-color: white;
}

/* Business Opportunities */
.opportunity-card[b-netuj46feo] {
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--agile-yellow);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.opportunity-card-header[b-netuj46feo] {
    cursor: pointer;
    padding: 1.5rem;
    transition: background-color 0.2s ease;
}

.opportunity-card-header:hover[b-netuj46feo] {
    background-color: #f0f7f8;
}

.opportunity-title[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: var(--agile-teal);
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opportunity-chevron[b-netuj46feo] {
    color: var(--agile-teal);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.2s ease;
    margin-left: 1rem;
}

.opportunity-card-header:hover .opportunity-chevron[b-netuj46feo] {
    transform: scale(1.2);
}

.opportunity-card-body[b-netuj46feo] {
    padding: 0;
}

.opportunity-section[b-netuj46feo] {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e9ecef;
}

.section-label[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    color: #1A1A1A;
}

.section-content[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #495057;
    line-height: 1.6;
}

/* Colored backgrounds for each section */
.needs-section[b-netuj46feo] {
    background-color: #E3F2FD;
}

.initiatives-section[b-netuj46feo] {
    background-color: #E8F5E9;
}

.opportunities-section[b-netuj46feo] {
    background-color: #FFF9E6;
}

.budget-section[b-netuj46feo] {
    background-color: #F5F5F5;
}

/* Source URLs styling */
.source-urls-list[b-netuj46feo] {
    list-style: none;
    padding-left: 0;
}

.source-urls-list li[b-netuj46feo] {
    margin-bottom: 0.5rem;
}

.source-urls-list a[b-netuj46feo] {
    color: var(--agile-teal);
    text-decoration: none;
    word-break: break-all;
}

.source-urls-list a:hover[b-netuj46feo] {
    text-decoration: underline;
}

/* AI Disclaimer */
.ai-disclaimer[b-netuj46feo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
}
/* /Components/Shared/DistrictRosterModal.razor.rz.scp.css */
.roster-backdrop[b-bveo5zvcdx] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.roster-modal[b-bveo5zvcdx] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    padding: 1.5rem 1.5rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    width: 100%;
    max-width: 760px;
    max-height: 88vh;
}

.roster-close[b-bveo5zvcdx] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.roster-close:hover[b-bveo5zvcdx] {
    background: #f1f3f5;
    color: #333;
}

.roster-title[b-bveo5zvcdx] {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0 0 0.15rem;
    padding-right: 1.5rem;
}

.roster-subtitle[b-bveo5zvcdx] {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.roster-body[b-bveo5zvcdx] {
    overflow-y: auto;
    flex: 1 1 auto;
    padding-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}

.roster-empty[b-bveo5zvcdx] {
    color: #777;
    text-align: center;
    padding: 1.5rem 0;
    margin: 0;
}

.roster-table[b-bveo5zvcdx] {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.roster-table thead th[b-bveo5zvcdx] {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #999;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
}

.roster-table td[b-bveo5zvcdx],
.roster-table th[b-bveo5zvcdx] {
    padding: 0.35rem 0.5rem;
    vertical-align: middle;
}

.roster-contact-email[b-bveo5zvcdx] {
    font-size: 0.82rem;
}

.roster-contact-phone[b-bveo5zvcdx] {
    font-size: 0.78rem;
    color: #888;
}

.roster-school[b-bveo5zvcdx] {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 0.6rem;
    overflow: hidden;
}

.roster-school-head[b-bveo5zvcdx] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    width: 100%;
    text-align: left;
    background: #f8f9fa;
    border: none;
    padding: 0.55rem 0.7rem;
    cursor: pointer;
}

.roster-school-head:hover[b-bveo5zvcdx] {
    background: #f1f3f5;
}

.roster-school-chevron[b-bveo5zvcdx] {
    color: #999;
    font-size: 0.8rem;
}

.roster-school-name[b-bveo5zvcdx] {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--agile-teal-dark);
}

.roster-school-loc[b-bveo5zvcdx] {
    font-size: 0.8rem;
    color: #888;
}

.roster-school-body[b-bveo5zvcdx] {
    padding: 0.4rem 0.7rem 0.6rem;
    border-top: 1px solid #e9ecef;
}

.roster-school-note[b-bveo5zvcdx] {
    font-size: 0.82rem;
    padding: 0.4rem 0;
}

.roster-actions[b-bveo5zvcdx] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding-top: 0.85rem;
    margin-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}
/* /Components/Shared/DistrictSearchPanel.razor.rz.scp.css */
.institution-badge[b-i6oul5kmbj] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.6rem;
    background: #e8f4f5;
    border: 1px solid var(--agile-teal);
    border-radius: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--agile-teal);
    width: fit-content;
}

.institution-badge-name[b-i6oul5kmbj] {
    font-weight: 600;
}

.institution-badge-loc[b-i6oul5kmbj] {
    color: #6c757d;
}

.institution-badge-clear[b-i6oul5kmbj] {
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1;
    padding: 0 0.15rem;
    margin-left: 0.2rem;
}

.institution-badge-clear:hover[b-i6oul5kmbj] {
    color: #dc3545;
}

.panel-name-search[b-i6oul5kmbj] {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.panel-name-search:focus[b-i6oul5kmbj] {
    border-color: var(--agile-teal);
}

.btn-advanced-filters-toggle[b-i6oul5kmbj] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-size: 0.72rem;
    font-family: inherit;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0;
    transition: color 0.2s;
}

.btn-advanced-filters-toggle:hover[b-i6oul5kmbj] {
    color: var(--agile-teal);
}

.btn-advanced-filters-toggle[b-i6oul5kmbj]  .icon.rotated {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.panel-results[b-i6oul5kmbj] {
    display: flex;
    flex-direction: column;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.district-suggestion-item[b-i6oul5kmbj] {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.district-suggestion-item:hover[b-i6oul5kmbj] {
    background-color: #f8f9fa;
}

.district-suggestion-name[b-i6oul5kmbj] {
    font-size: 0.825rem;
    font-weight: 500;
    color: #333;
}

.district-suggestion-loc[b-i6oul5kmbj] {
    font-size: 0.7rem;
    color: #6c757d;
}

.advanced-search-panel[b-i6oul5kmbj] {
    position: fixed;
    width: 320px;
    max-height: 80vh;
    overflow-y: auto;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* Match the product family content font (district profile, opportunities, chat).
       Form controls inherit this since they default to their own font. */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.advanced-search-divider[b-i6oul5kmbj] {
    border: none;
    border-top: 1px solid #dee2e6;
    margin: 0.25rem 0;
}

.advanced-search-header[b-i6oul5kmbj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #dee2e6;
}

.advanced-search-close[b-i6oul5kmbj] {
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
}

.advanced-search-close:hover[b-i6oul5kmbj] {
    color: #dc3545;
}

.advanced-search-fields[b-i6oul5kmbj] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.advanced-search-field[b-i6oul5kmbj] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.advanced-search-field label[b-i6oul5kmbj] {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advanced-search-field input[b-i6oul5kmbj],
.advanced-search-field select[b-i6oul5kmbj] {
    padding: 5px 8px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.82rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.advanced-search-field input:focus[b-i6oul5kmbj],
.advanced-search-field select:focus[b-i6oul5kmbj] {
    border-color: var(--agile-teal);
}

.advanced-search-field select:disabled[b-i6oul5kmbj] {
    opacity: 0.5;
    cursor: not-allowed;
}

.advanced-loading[b-i6oul5kmbj] {
    font-size: 0.78rem;
    color: #6c757d;
    font-style: italic;
}

.btn-apply-advanced[b-i6oul5kmbj] {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background: var(--agile-teal);
    color: white;
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
    align-self: flex-end;
}

.btn-apply-advanced:hover[b-i6oul5kmbj] {
    background: var(--agile-teal-dark);
}

@media (max-width: 1600px) {
    .advanced-search-panel[b-i6oul5kmbj] {
        width: min(320px, calc(100vw - 2rem));
    }
}
/* /Components/Shared/EnhanceAspectModal.razor.rz.scp.css */
.enhance-aspect-backdrop[b-35oc7xh5dv] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.enhance-aspect-modal[b-35oc7xh5dv] {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    width: 100%;
    max-width: 860px;
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
}

.enhance-aspect-close[b-35oc7xh5dv] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.enhance-aspect-close:hover[b-35oc7xh5dv] {
    background: #f1f3f5;
    color: #333;
}

.enhance-aspect-title[b-35oc7xh5dv] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0 0 0.75rem;
    text-align: center;
}

.enhance-aspect-subtitle[b-35oc7xh5dv] {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 auto 1.25rem;
    text-align: center;
    max-width: 620px;
}

.enhance-aspect-intent[b-35oc7xh5dv] {
    margin-bottom: 1.25rem;
}

.enhance-aspect-actions[b-35oc7xh5dv] {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.5rem;
}

.enhance-aspect-actions-diff[b-35oc7xh5dv] {
    margin-top: 1.25rem;
}

.enhance-aspect-error[b-35oc7xh5dv] {
    color: #b02a37;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin: 0 0 1rem;
}

.enhance-aspect-rejection[b-35oc7xh5dv] {
    color: #5a4a1c;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.enhance-aspect-diff[b-35oc7xh5dv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 720px) {
    .enhance-aspect-diff[b-35oc7xh5dv] {
        grid-template-columns: 1fr;
    }
}

.enhance-aspect-diff-col[b-35oc7xh5dv] {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
}

.enhance-aspect-diff-col-suggested[b-35oc7xh5dv] {
    background: #f0f7f6;
    border-color: #c7e0dc;
}

.enhance-aspect-diff-header[b-35oc7xh5dv] {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}

.enhance-aspect-diff-col-suggested .enhance-aspect-diff-header[b-35oc7xh5dv] {
    color: var(--agile-teal-dark);
}

.enhance-aspect-field[b-35oc7xh5dv] {
    margin-bottom: 0.75rem;
}

.enhance-aspect-field:last-child[b-35oc7xh5dv] {
    margin-bottom: 0;
}

.enhance-aspect-field-label[b-35oc7xh5dv] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.enhance-aspect-field-value[b-35oc7xh5dv] {
    font-size: 0.95rem;
    color: #222;
    line-height: 1.45;
}

.enhance-aspect-field-value-multiline[b-35oc7xh5dv] {
    white-space: pre-wrap;
}

.enhance-aspect-reasoning[b-35oc7xh5dv] {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.enhance-aspect-reasoning-label[b-35oc7xh5dv] {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8a6d3b;
    margin-bottom: 0.35rem;
}

.enhance-aspect-reasoning-body[b-35oc7xh5dv] {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #5a4a1c;
    white-space: pre-wrap;
}

.enhance-aspect-advisory[b-35oc7xh5dv] {
    background: #eef4ff;
    border: 1px solid #c8d8f5;
    border-radius: 6px;
    padding: 0.85rem 1rem;
}

.enhance-aspect-advisory-label[b-35oc7xh5dv] {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.enhance-aspect-advisory-section[b-35oc7xh5dv] {
    margin-bottom: 0.75rem;
}

.enhance-aspect-advisory-section:last-child[b-35oc7xh5dv] {
    margin-bottom: 0;
}

.enhance-aspect-advisory-heading[b-35oc7xh5dv] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.35rem;
}

.enhance-aspect-advisory-item[b-35oc7xh5dv] {
    background: white;
    border: 1px solid #d8e2f3;
    border-radius: 5px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #2d3748;
    line-height: 1.45;
}

.enhance-aspect-advisory-item:last-child[b-35oc7xh5dv] {
    margin-bottom: 0;
}

.enhance-aspect-advisory-item-name[b-35oc7xh5dv] {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.2rem;
}

.enhance-aspect-advisory-item-desc[b-35oc7xh5dv] {
    margin-bottom: 0.2rem;
}

.enhance-aspect-advisory-item-reason[b-35oc7xh5dv] {
    font-size: 0.82rem;
    color: #5a6c85;
    font-style: italic;
}

.enhance-aspect-apply-advisory[b-35oc7xh5dv] {
    margin-top: 0.5rem;
}

.enhance-aspect-applied[b-35oc7xh5dv] {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #15803d;
}
/* /Components/Shared/FeedbackModal.razor.rz.scp.css */
.feedback-modal-backdrop[b-cpv1akct3w] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-modal[b-cpv1akct3w] {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    min-width: 360px;
    max-width: 520px;
}

.feedback-modal-close[b-cpv1akct3w] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.feedback-modal-close:hover[b-cpv1akct3w] {
    background: #f1f3f5;
    color: #333;
}

.feedback-modal-title[b-cpv1akct3w] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0 0 0.4rem;
    text-align: center;
}

.feedback-modal-subtext[b-cpv1akct3w] {
    color: #777;
    font-size: 0.85rem;
    margin: 0 0 1rem;
    text-align: center;
}

.feedback-modal-input[b-cpv1akct3w] {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    resize: vertical;
    margin-bottom: 1.25rem;
}

.feedback-modal-input:focus[b-cpv1akct3w] {
    outline: none;
    border-color: var(--agile-teal);
    box-shadow: 0 0 0 2px rgba(0, 128, 128, 0.15);
}

.feedback-modal-actions[b-cpv1akct3w] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* /Components/Shared/JobRunningCard.razor.rz.scp.css */
.job-running-card[b-vl2izklcut] {
    background: white;
    border-radius: 8px;
    border-top: 4px solid var(--agile-yellow);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 3rem 2rem;
    margin: 1rem auto 1.5rem;
    text-align: center;
    max-width: 640px;
}

.job-running-card .job-spinner[b-vl2izklcut] {
    width: 3rem;
    height: 3rem;
    color: var(--agile-teal) !important;
    margin-bottom: 1rem;
}

.job-running-title[b-vl2izklcut] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--agile-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}
/* /Components/Shared/OpportunityDetail.razor.rz.scp.css */
/* Header */
.detail-header[b-38291qhb3s] {
    background: var(--agile-teal);
    color: white;
    padding: 2rem 0;
}

.header-actions[b-38291qhb3s] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.header-actions .header-profile-btn[b-38291qhb3s] {
    margin-top: 0;
}

.header-profile-btn[b-38291qhb3s] {
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.8rem;
    transition: background 0.2s;
}

    .header-profile-btn:hover[b-38291qhb3s] {
        background: rgba(255, 255, 255, 0.3);
        color: white;
    }

.detail-title[b-38291qhb3s] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.detail-subtitle[b-38291qhb3s] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: var(--agile-yellow);
}

.detail-meta[b-38291qhb3s] {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.header-link[b-38291qhb3s] {
    color: var(--agile-yellow) !important;
    text-decoration: underline;
}

    .header-link:hover[b-38291qhb3s] {
        color: var(--agile-yellow-hover) !important;
    }

/* Back-nav row */
.detail-nav[b-38291qhb3s] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-nav-left[b-38291qhb3s] {
    display: flex;
    align-items: center;
}

/* Shared content styles -- cascade into ChildContent via ::deep */

[b-38291qhb3s] .aspect-context {
    background: #f8f9fa;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--agile-teal);
}

[b-38291qhb3s] .aspect-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    [b-38291qhb3s] .aspect-badge.aspect {
        background: var(--agile-teal);
        color: white;
    }

    [b-38291qhb3s] .aspect-badge.constraint {
        background: var(--agile-gold);
        color: #333;
    }

[b-38291qhb3s] .aspect-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
}

[b-38291qhb3s] .aspect-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

/* Group the status control immediately to the left of the feedback buttons. */
[b-38291qhb3s] .summary-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
}

/* Status control in the detail header. */
[b-38291qhb3s] .opportunity-status-control {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Feedback buttons -- both pages use this in HeaderActions */
[b-38291qhb3s] .feedback-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[b-38291qhb3s] .feedback-label {
    font-size: 0.9rem;
    color: #666;
    margin-right: 0.25rem;
}

[b-38291qhb3s] .feedback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s, background 0.2s;
}

    [b-38291qhb3s] .feedback-btn:hover {
        border-color: var(--agile-teal);
        background: #f0f8f8;
    }

    [b-38291qhb3s] .feedback-btn.active {
        border-color: var(--agile-teal);
        background: #e0f2f2;
    }

/* Page-local overrides for the global .markdown-content baseline in app.css. */
[b-38291qhb3s] .markdown-content h1,
[b-38291qhb3s] .markdown-content h2,
[b-38291qhb3s] .markdown-content h3,
[b-38291qhb3s] .markdown-content h4 {
    color: var(--agile-teal-dark);
}

[b-38291qhb3s] .markdown-content h1 { font-size: 1.5rem; }
[b-38291qhb3s] .markdown-content h2 { font-size: 1.3rem; }
[b-38291qhb3s] .markdown-content h3 { font-size: 1.15rem; }
[b-38291qhb3s] .markdown-content h4 { font-size: 1.05rem; }

[b-38291qhb3s] .markdown-content strong {
    color: var(--agile-teal-dark);
}

[b-38291qhb3s] .markdown-content blockquote {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    color: #555;
    font-style: normal;
}

    [b-38291qhb3s] .markdown-content table th {
        background: #f8f9fa;
        font-weight: 700;
    }

/* Responsive */
@media (max-width: 767.98px) {
    .detail-title[b-38291qhb3s] {
        font-size: 1.4rem;
    }

    .detail-header[b-38291qhb3s] {
        padding: 1.5rem 0;
    }
}
/* /Components/Shared/OpportunityTopicCard.razor.rz.scp.css */
.topic-card[b-bedpj4fer0] {
    position: relative;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.15s;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    height: 100%;
}

/* Dispatch spinner overlay shown while a copy/delete/run is in flight. */
.topic-card-overlay[b-bedpj4fer0] {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.topic-card-overlay .spinner-border[b-bedpj4fer0] {
    color: var(--agile-teal);
    width: 2.25rem;
    height: 2.25rem;
}

/* Body area absorbs whatever space the row gives us so sparse and dense
   cards in the same row stay aligned. Aspects toggle sits at the bottom. */
.topic-card-body[b-bedpj4fer0],
.topic-card-empty[b-bedpj4fer0] {
    flex: 1;
    min-height: 0;
}

    .topic-card:hover[b-bedpj4fer0] {
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

.topic-card-header[b-bedpj4fer0] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.topic-card-title-link[b-bedpj4fer0] {
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

    .topic-card-title-link:hover .topic-card-title[b-bedpj4fer0] {
        color: var(--agile-teal);
        text-decoration: underline;
    }

.topic-card-title[b-bedpj4fer0] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Overflow menu */
.card-menu-wrap[b-bedpj4fer0] {
    position: relative;
    flex-shrink: 0;
}

.card-menu-toggle[b-bedpj4fer0] {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0.15rem 0.5rem;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

    .card-menu-toggle:hover[b-bedpj4fer0],
    .card-menu-toggle[aria-expanded="true"][b-bedpj4fer0] {
        background: #eef4f5;
        border-color: #d0dee0;
        color: var(--agile-teal);
    }

.card-menu-dropdown[b-bedpj4fer0] {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    z-index: 20;
    min-width: 150px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    padding: 0.2rem 0;
}

.card-menu-item[b-bedpj4fer0] {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
}

    .card-menu-item:hover:not(:disabled)[b-bedpj4fer0] {
        background: #f0f4f5;
        color: var(--agile-teal);
        text-decoration: none;
    }

    .card-menu-item:disabled[b-bedpj4fer0] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Status line */
.topic-card-status-line[b-bedpj4fer0] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0.9rem;
}

.status-text[b-bedpj4fer0] {
    color: #555;
}

.status-divider[b-bedpj4fer0] {
    color: #ccc;
}

.status-opportunities[b-bedpj4fer0] {
    color: #333;
}

.status-opportunities strong[b-bedpj4fer0] {
    color: var(--agile-teal-dark);
}

/* Error */
.topic-card-error[b-bedpj4fer0] {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 4px;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

/* Body: recent discoveries */
.topic-card-body[b-bedpj4fer0] {
    margin-bottom: 0.5rem;
}

.recent-discovery-list[b-bedpj4fer0] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recent-discovery-row[b-bedpj4fer0] {
    padding: 0;
}

.recent-discovery-link[b-bedpj4fer0] {
    display: block;
    padding: 0.55rem 0.7rem;
    background: #fafbfc;
    border: 1px solid #eef0f2;
    border-left: 3px solid var(--agile-yellow);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s, border-color 0.15s;
}

    .recent-discovery-link:hover[b-bedpj4fer0] {
        background: #f0f7f7;
        border-color: #d0dee0;
        border-left-color: var(--agile-teal);
        text-decoration: none;
        color: inherit;
    }

.recent-discovery-head[b-bedpj4fer0] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.recent-discovery-inst[b-bedpj4fer0] {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
}

.recent-discovery-time[b-bedpj4fer0] {
    font-size: 0.7rem;
    color: #888;
    white-space: nowrap;
}

.recent-discovery-title[b-bedpj4fer0] {
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.15rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-discovery-summary[b-bedpj4fer0] {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Empty state — sized to fill the body so sparse cards don't collapse. */
.topic-card-empty[b-bedpj4fer0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #fafbfc;
    border: 1px dashed #dee2e6;
    border-radius: 4px;
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.empty-state-headline[b-bedpj4fer0] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
}

.empty-state-actions[b-bedpj4fer0] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.empty-state-btn[b-bedpj4fer0] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.empty-state-btn:hover[b-bedpj4fer0] {
    text-decoration: none;
}

.empty-state-btn-primary[b-bedpj4fer0] {
    background: var(--agile-teal);
    color: white;
}

.empty-state-btn-primary:hover:not(:disabled)[b-bedpj4fer0] {
    background: var(--agile-teal-dark);
}

.empty-state-btn-secondary[b-bedpj4fer0] {
    background: #e8f4f5;
    color: var(--agile-teal);
}

.empty-state-btn-secondary:hover:not(:disabled)[b-bedpj4fer0] {
    background: var(--agile-teal);
    color: white;
}

.empty-state-btn:disabled[b-bedpj4fer0] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Inline rename — swaps in for the title + menu when active */
.topic-card-rename[b-bedpj4fer0] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    min-width: 0;
}

.rename-input[b-bedpj4fer0] {
    width: 100%;
    min-width: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    border: 1px solid var(--agile-teal);
    border-radius: 4px;
    padding: 0.4rem 0.6rem;
    background: white;
    outline: none;
}

.rename-actions[b-bedpj4fer0] {
    display: flex;
    gap: 0.4rem;
    align-self: flex-end;
}

.rename-input:focus[b-bedpj4fer0] {
    box-shadow: 0 0 0 2px rgba(0, 128, 128, 0.15);
}

.rename-btn[b-bedpj4fer0] {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.rename-btn-save[b-bedpj4fer0] {
    background: var(--agile-teal);
    color: white;
}

.rename-btn-save:hover:not(:disabled)[b-bedpj4fer0] {
    background: var(--agile-teal-dark);
}

.rename-btn-save:disabled[b-bedpj4fer0] {
    opacity: 0.5;
    cursor: not-allowed;
}

.rename-btn-cancel[b-bedpj4fer0] {
    background: #f1f3f5;
    color: #555;
}

.rename-btn-cancel:hover[b-bedpj4fer0] {
    background: #e2e6ea;
    color: #333;
}

/* Aspects toggle */
.topic-card-aspects[b-bedpj4fer0] {
    border-top: 1px solid #eee;
    padding-top: 0.6rem;
    margin-top: 0.5rem;
}

.aspects-toggle[b-bedpj4fer0] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.15rem 0;
    cursor: pointer;
    color: #666;
    text-align: left;
    font-size: 0.78rem;
}

    .aspects-toggle:hover[b-bedpj4fer0] {
        color: var(--agile-teal);
    }

.aspects-toggle-label[b-bedpj4fer0] {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.aspects-toggle:hover .aspects-toggle-label[b-bedpj4fer0] {
    color: var(--agile-teal);
}

.aspects-toggle-summary[b-bedpj4fer0] {
    margin-left: auto;
    color: #888;
    font-size: 0.75rem;
    font-weight: 500;
}

.aspect-status-list[b-bedpj4fer0] {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.aspect-status-row[b-bedpj4fer0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.35rem 0.6rem;
    background: #fafbfc;
    border: 1px solid #eef0f2;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
}

.aspect-status-name[b-bedpj4fer0] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* /Components/Shared/PostSaveModal.razor.rz.scp.css */
.post-save-backdrop[b-svk85ekiq2] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-save-modal[b-svk85ekiq2] {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    min-width: 360px;
    max-width: 520px;
}

.post-save-close[b-svk85ekiq2] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.post-save-close:hover[b-svk85ekiq2] {
    background: #f1f3f5;
    color: #333;
}

.post-save-title[b-svk85ekiq2] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0 0 0.75rem;
    text-align: center;
}

.post-save-body[b-svk85ekiq2] {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-align: center;
}

.post-save-actions[b-svk85ekiq2] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* /Components/Shared/ProspectContactsModal.razor.rz.scp.css */
.prospect-backdrop[b-oef066rgap] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.prospect-modal[b-oef066rgap] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    padding: 1.5rem 1.5rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    width: 100%;
    max-width: 820px;
    max-height: 88vh;
}

.prospect-close[b-oef066rgap] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.prospect-close:hover[b-oef066rgap] {
    background: #f1f3f5;
    color: #333;
}

.prospect-title[b-oef066rgap] {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0 0 0.25rem;
    padding-right: 1.5rem;
}

.prospect-crm-name[b-oef066rgap] {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.prospect-toolbar[b-oef066rgap] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.5rem 0 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.prospect-filter[b-oef066rgap] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 240px;
}

.prospect-filter-label[b-oef066rgap] {
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
}

.prospect-title-dropdown[b-oef066rgap] {
    position: relative;
}

.prospect-title-summary[b-oef066rgap] {
    list-style: none;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prospect-title-summary[b-oef066rgap]::-webkit-details-marker {
    display: none;
}

.prospect-title-summary[b-oef066rgap]::after {
    content: "\25BE";
    color: #888;
    margin-left: 0.5rem;
}

.prospect-title-menu[b-oef066rgap] {
    position: absolute;
    z-index: 1100;
    margin-top: 0.25rem;
    min-width: 220px;
    max-height: 420px;
    overflow-y: auto;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    padding: 0.35rem;
}

.prospect-title-search-wrap[b-oef066rgap] {
    position: sticky;
    top: 0;
    background: white;
    margin-bottom: 0.35rem;
}

.prospect-title-search[b-oef066rgap] {
    padding-right: 1.75rem;
}

.prospect-title-search-clear[b-oef066rgap] {
    position: absolute;
    top: 50%;
    right: 0.4rem;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 0.25rem;
    cursor: pointer;
}

.prospect-title-search-clear:hover[b-oef066rgap] {
    color: #555;
}

.prospect-title-empty[b-oef066rgap] {
    font-size: 0.82rem;
    color: #999;
    padding: 0.4rem;
}

.prospect-title-clear[b-oef066rgap] {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--agile-teal);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.4rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f5;
    margin-bottom: 0.25rem;
}

.prospect-title-clear:hover[b-oef066rgap] {
    text-decoration: underline;
}

.prospect-title-option[b-oef066rgap] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    padding: 0.3rem 0.4rem;
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
}

.prospect-title-option:hover[b-oef066rgap] {
    background: #f1f3f5;
}

.prospect-subbar[b-oef066rgap] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.prospect-select-all[b-oef066rgap] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    margin: 0;
}

.prospect-count[b-oef066rgap] {
    font-size: 0.8rem;
    color: #777;
}

.prospect-body[b-oef066rgap] {
    overflow-y: auto;
    flex: 1 1 auto;
    padding-top: 0.25rem;
}

.prospect-empty[b-oef066rgap] {
    color: #777;
    text-align: center;
    padding: 1.5rem 0;
    margin: 0;
}

.prospect-group[b-oef066rgap] {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.prospect-group-head[b-oef066rgap] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding: 0.55rem 0.7rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.prospect-account-select[b-oef066rgap] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0;
    cursor: pointer;
}

.prospect-group-name[b-oef066rgap] {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--agile-teal-dark);
}

.prospect-group-loc[b-oef066rgap] {
    font-size: 0.8rem;
    color: #888;
}

.prospect-group-note[b-oef066rgap] {
    font-size: 0.82rem;
    padding: 0.5rem 0.7rem;
}

.prospect-table[b-oef066rgap] {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.prospect-table thead th[b-oef066rgap] {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #999;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
}

.prospect-table td[b-oef066rgap],
.prospect-table th[b-oef066rgap] {
    padding: 0.35rem 0.5rem;
    vertical-align: middle;
}

.prospect-table tbody tr.selected[b-oef066rgap] {
    background: rgba(32, 178, 170, 0.08);
}

.prospect-check-col[b-oef066rgap] {
    width: 2.25rem;
    text-align: center;
}

.prospect-contact-email[b-oef066rgap] {
    font-size: 0.78rem;
    color: #888;
}

.prospect-load-warn[b-oef066rgap] {
    color: #c8930a;
    margin-left: 0.35rem;
    cursor: help;
}

.prospect-actions[b-oef066rgap] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding-top: 0.85rem;
    margin-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}

.prospect-actions .btn-primary[b-oef066rgap] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Step 2 — choose an action */
.prospect-step2[b-oef066rgap] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0.5rem 0 0.25rem;
}

.prospect-step2-summary[b-oef066rgap] {
    font-size: 0.9rem;
    color: #444;
    margin: 0 0 1rem;
}

.prospect-action-cards[b-oef066rgap] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.prospect-action-card[b-oef066rgap] {
    flex: 1 1 0;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    text-align: left;
    padding: 1.25rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.prospect-action-card:hover:not(:disabled)[b-oef066rgap] {
    border-color: var(--agile-teal);
    background: rgba(32, 178, 170, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.prospect-action-card:disabled[b-oef066rgap] {
    opacity: 0.6;
    cursor: default;
}

.prospect-action-card .icon[b-oef066rgap] {
    background-color: var(--agile-teal-dark);
}

.prospect-action-card-title[b-oef066rgap] {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--agile-teal-dark);
}

.prospect-action-card-desc[b-oef066rgap] {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.3;
}
/* /Components/Shared/SecondarySidebar.razor.rz.scp.css */
/* Secondary Sidebar */
.secondary-sidebar[b-qqcvn19hyd] {
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    position: sticky;
    top: 0;
    transition: width 0.25s ease, min-width 0.25s ease, border-right-width 0.25s ease;
}

    .secondary-sidebar.open[b-qqcvn19hyd] {
        width: 260px;
        min-width: 260px;
    }

    .secondary-sidebar.collapsed[b-qqcvn19hyd] {
        width: 0;
        min-width: 0;
        border-right-width: 0;
    }

.secondary-sidebar-inner[b-qqcvn19hyd] {
    width: 260px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.secondary-sidebar-header[b-qqcvn19hyd] {
    background: var(--agile-teal);
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    box-sizing: border-box;
}

.secondary-sidebar-title[b-qqcvn19hyd] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Items */
.secondary-sidebar-nav[b-qqcvn19hyd] {
    flex: 1;
    padding: 0 0 0.5rem 0;
}

[b-qqcvn19hyd] .secondary-nav-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    color: #495057;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
}

    [b-qqcvn19hyd] .secondary-nav-item:hover {
        background: #e9ecef;
        text-decoration: none;
        color: #495057;
    }

    [b-qqcvn19hyd] .secondary-nav-item.active {
        border-left-color: var(--agile-teal);
        background: rgba(23, 130, 140, 0.08);
        color: var(--agile-teal);
        font-weight: 600;
    }

    [b-qqcvn19hyd] .secondary-nav-item svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

[b-qqcvn19hyd] .secondary-nav-label {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Section Header */
[b-qqcvn19hyd] .secondary-nav-section {
    border-top: 1px solid #dee2e6;
}

    [b-qqcvn19hyd] .secondary-nav-section:first-child {
        border-top: 0;
    }

[b-qqcvn19hyd] .secondary-nav-section-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    padding: 0.25rem 1rem 0.25rem;
}

/* Indented Items */
[b-qqcvn19hyd] .secondary-nav-indent {
    padding-left: 1.25rem;
}

[b-qqcvn19hyd] .secondary-nav-empty {
    font-size: 0.8rem;
    color: #aaa;
    font-style: italic;
    padding: 0.4rem 1.25rem;
}

/* Add Button */
[b-qqcvn19hyd] .secondary-nav-add {
    margin-top: 0.25rem;
    color: var(--agile-teal);
    font-weight: 600;
}

    [b-qqcvn19hyd] .secondary-nav-add:hover {
        color: var(--agile-teal-dark);
    }

/* Footer */
.secondary-sidebar-footer[b-qqcvn19hyd] {
    border-top: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

[b-qqcvn19hyd] .secondary-nav-back {
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.15s;
}

    [b-qqcvn19hyd] .secondary-nav-back:hover {
        color: var(--agile-teal);
        text-decoration: none;
    }
/* /Components/Shared/SharedListWarningModal.razor.rz.scp.css */
.shared-list-backdrop[b-la43ssqbkk] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shared-list-modal[b-la43ssqbkk] {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    min-width: 360px;
    max-width: 520px;
}

.shared-list-close[b-la43ssqbkk] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}

.shared-list-close:hover[b-la43ssqbkk] {
    background: #f1f3f5;
    color: #333;
}

.shared-list-title[b-la43ssqbkk] {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--agile-teal-dark);
    margin: 0 0 1rem;
    text-align: center;
}

.shared-list-body[b-la43ssqbkk] {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 auto 1.25rem;
    text-align: left;
    max-width: 440px;
}

.shared-list-body p[b-la43ssqbkk] {
    margin: 0 0 0.85rem;
}

.shared-list-body p:last-child[b-la43ssqbkk] {
    margin-bottom: 0;
}

.shared-list-topics[b-la43ssqbkk] {
    margin: 0 0 0.85rem;
    padding-left: 1.25rem;
}

.shared-list-topics li[b-la43ssqbkk] {
    margin-bottom: 0.25rem;
}

.shared-list-actions[b-la43ssqbkk] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* /Components/Shared/StatusPill.razor.rz.scp.css */
.status-pill[b-hrx6734qdl] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-pill.size-normal[b-hrx6734qdl] {
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
}

.status-pill.size-compact[b-hrx6734qdl] {
    padding: 0.1rem 0.45rem;
    border-radius: 3px;
}

.status-dot[b-hrx6734qdl] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.status-pill.variant-fresh[b-hrx6734qdl] {
    background: #d8efe1;
    color: #1f6c3a;
}

.status-pill.variant-running[b-hrx6734qdl] {
    background: #fff3cd;
    color: #8a6d3b;
}

.status-pill.variant-stale[b-hrx6734qdl] {
    background: #f8d7da;
    color: #842029;
}

.status-pill.variant-none[b-hrx6734qdl] {
    background: #f1f3f5;
    color: #6c757d;
}
/* /Components/Shared/TerritoryBuilderModal.razor.rz.scp.css */
.territory-builder-panel[b-pfk48hw1xy] {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    background: white;
    z-index: 10;
}

.territory-builder-panel-hidden[b-pfk48hw1xy] {
    visibility: hidden;
    pointer-events: none;
}

.territory-builder-header[b-pfk48hw1xy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: var(--agile-teal);
    color: white;
    flex-shrink: 0;
}

.territory-builder-title[b-pfk48hw1xy] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.territory-builder-close[b-pfk48hw1xy] {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.25rem;
}

    .territory-builder-close:hover[b-pfk48hw1xy] {
        opacity: 0.8;
    }

.territory-builder-body[b-pfk48hw1xy] {
    flex: 1;
    display: flex;
    min-height: 0;
    background: #f8f9fa;
}

.territory-builder-iframe[b-pfk48hw1xy] {
    flex: 1;
    width: 100%;
    height: 100%;
    border: 0;
}
