@import '_content/Agile.Authentication.UI/Agile.Authentication.UI.tbp56ibmps.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-7mytpdhwua] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-7mytpdhwua] {
    flex: 1;
}

.sidebar[b-7mytpdhwua] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-7mytpdhwua] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-7mytpdhwua]  a, .top-row[b-7mytpdhwua]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-7mytpdhwua]  a:hover, .top-row[b-7mytpdhwua]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-7mytpdhwua]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-7mytpdhwua] {
        justify-content: space-between;
    }

    .top-row[b-7mytpdhwua]  a, .top-row[b-7mytpdhwua]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-7mytpdhwua] {
        flex-direction: row;
    }

    .sidebar[b-7mytpdhwua] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-7mytpdhwua] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-7mytpdhwua]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-7mytpdhwua], article[b-7mytpdhwua] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#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] {
    /* Brand Colors */
    --agile-blue: #189fd0;
    --agile-teal: #17828B;
    --agile-yellow-light: #fedb3c;
    --agile-yellow: #F5BB2A;
    --agile-gray: #E9E9E9;
    --agile-mint: #51b5a2;
    --agile-light-green: #edf5ea;

    /* Background Colors */
    --bg-page: #E9E9E9;
    --bg-card: #fafbfc;
    --bg-white: white;
    --bg-input: #f8f9fa;
    --bg-scrollbar-track: #f1f1f1;
    --bg-user-message: #e8f4f8;
    --bg-ai-message: #f5f5f5;

    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --text-user-message: #1a5f7a;
    --text-header-subtitle: rgba(0, 0, 0, 0.9);

    /* Border Colors */
    --border-light: #c4c4c4;
    --border-medium: #d0d0d0;
    --border-user-message: #b8d8e8;

    /* Border Radius */
    --radius-card: 8px;
    --radius-message: 16px;
    --radius-input: 28px;
    --radius-small: 4px;
    --radius-scrollbar: 10px;
    --radius-circle: 50%;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-input-top: 0 -2px 4px rgba(0, 0, 0, 0.05);
    --shadow-header: 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Layout */
    display: grid;
    grid-template-areas:
        "left-sidebar main-chat-area"
        "bottom-sidebar main-chat-area";
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto 1fr;
    height: 100vh;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--bg-page);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.main-chat-area[b-y3yzzm3w16] {
    grid-area: main-chat-area;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-page);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    height: 100%;
}

.left-sidebar[b-y3yzzm3w16] {
    grid-area: left-sidebar;
    background-color: var(--bg-card);
    border-radius: var(--radius-card);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.bottom-sidebar[b-y3yzzm3w16] {
    grid-area: bottom-sidebar;
    background-color: var(--bg-card);
    border-radius: var(--radius-card);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    height: fit-content;
}


.chat-header[b-y3yzzm3w16] {
    flex-shrink: 0;
    color: var(--agile-teal);
    text-align: center;
    border-bottom: solid;
    border-bottom-color: var(--agile-yellow);
    padding: var(--spacing-md);
}

.chat-messages[b-y3yzzm3w16] {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: start;
    align-content: start;
    overflow-y: auto;
    padding: var(--spacing-md);
  }

  .message-content[b-y3yzzm3w16] {
    padding: var(--spacing-sm);
    border-radius: var(--radius-message);
    box-shadow: var(--shadow-sm);
    width: fit-content;
  }

  .user-message[b-y3yzzm3w16] {
    /* User message takes up columns 2 thru 5 */
    grid-column: 2 / 6;
    justify-self: end;
    max-width: 100%;
    margin-right: var(--spacing-sm);
  }

  .ai-message[b-y3yzzm3w16] {
    /* User message takes up columns 1 thru 4 */
    grid-column: 1 / 5;
    justify-self: start;
    max-width: 100%;
    margin-left: var(--spacing-sm);
  }

  .user-message .message-content[b-y3yzzm3w16] {
    background-color: var(--bg-user-message);
    border: 1px solid var(--border-user-message);
    color: var(--text-user-message);
    border-bottom-right-radius: var(--radius-small);
  }

  .ai-message .message-content[b-y3yzzm3w16] {
    background-color: var(--bg-ai-message);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    border-bottom-left-radius: var(--radius-small);
  }

  .message-text[b-y3yzzm3w16] {
    line-height: 1.5;
  }

  .message-timestamp[b-y3yzzm3w16] {
    display: block;
    margin-top: var(--spacing-xs);
    opacity: 0.7;
    font-size: 0.75rem;
  }


/* Bottom prompt area */
.chat-input-container[b-y3yzzm3w16] {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: start;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

    /* User message prompt area */
    .input-group[b-y3yzzm3w16] {
        grid-column: 2 / 5;
        border: 1px solid var(--border-light);
        border-radius: var(--radius-card);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-sm);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        background-color: var(--bg-white);
        display: grid;
        grid-template-rows: auto auto;
        gap: var(--spacing-sm);
    }

        .input-group:focus-within[b-y3yzzm3w16] {
            border-color: var(--agile-blue);
            box-shadow: 0 0 0 3px rgba(24, 159, 208, 0.1), var(--shadow-md);
        }

        .input-group textarea[b-y3yzzm3w16] {
            width: 100%;
            border: none;
            outline: none;
            background-color: transparent;
            padding: var(--spacing-sm);
            font-family: inherit;
            font-size: 0.95rem;
            resize: none;
            min-height: 60px;
        }

        .input-group textarea:disabled[b-y3yzzm3w16] {
            opacity: 0.6;
            cursor: not-allowed;
        }

    /* Input + and button */
    .input-actions[b-y3yzzm3w16] {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .btn-add[b-y3yzzm3w16] {
            width: 3rem;
            height: 3rem;
            border-radius: var(--radius-circle);
            border: 1px transparent var(--border-light);
            background-color: var(--agile-light-green);
            color: var(--text-muted);
            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: var(--bg-input);
            color: var(--text-primary);
        }

        .btn-add:disabled[b-y3yzzm3w16] {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-send[b-y3yzzm3w16] {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--radius-circle);
            border: none;
            background-color: var(--agile-yellow);
            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);
        }

        .btn-send:disabled[b-y3yzzm3w16] {
            opacity: 0.5;
            cursor: not-allowed;
        }

/* /Components/Pages/DistrictProfilePage.razor.rz.scp.css */
/* District Profile Header */
.district-header[b-yljhp9c5s8] {
    background: var(--agile-teal);
    color: white;
    padding: 2rem 0;
    margin: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin-top: -1.1rem;
    margin-bottom: 2rem;
}

.district-title[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    color: var(--agile-yellow) !important;
    text-decoration: underline;
}

.district-type .parent-link:hover[b-yljhp9c5s8] {
    color: var(--agile-yellow-hover) !important;
}

.district-subtitle[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    color: var(--agile-yellow) !important;
    text-decoration: underline;
}

.district-subtitle a:hover[b-yljhp9c5s8] {
    color: var(--agile-yellow-hover) !important;
}

/* Page Heading */
.page-heading[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.stat-value[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    min-height: 120px;
    align-items: center;
}

.demo-circles-compact[b-yljhp9c5s8] {
    gap: 0.5rem;
}

.demo-circle[b-yljhp9c5s8] {
    flex: 1;
    min-width: 80px;
    max-width: 100px;
    text-align: center;
}

/* Mobile-friendly header controls */
.header-controls[b-yljhp9c5s8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info[b-yljhp9c5s8] {
    flex: 1 1 auto;
}

.section-controls[b-yljhp9c5s8] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .header-controls[b-yljhp9c5s8] {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-info[b-yljhp9c5s8] {
        text-align: center;
        font-size: 0.9rem;
    }

    .section-controls[b-yljhp9c5s8] {
        justify-content: center;
    }

    .section-controls button[b-yljhp9c5s8] {
        flex: 1;
        padding: 0.375rem 0.75rem;
    }

    .demo-circles[b-yljhp9c5s8] {
        gap: 1rem;
        justify-content: center;
    }

    .demo-circle[b-yljhp9c5s8] {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 70px;
        max-width: 90px;
    }

    .demo-circles-compact .demo-circle[b-yljhp9c5s8] {
        flex: 0 0 calc(33.333% - 0.5rem);
        min-width: 60px;
        max-width: 80px;
    }

    .demo-circles .circle-chart[b-yljhp9c5s8] {
        width: 70px;
        height: 70px;
    }

    .demo-circles .circle-text[b-yljhp9c5s8] {
        font-size: 0.85rem;
    }

    .demo-label[b-yljhp9c5s8] {
        font-size: 0.75rem;
    }

    .programs-container .circle-chart[b-yljhp9c5s8] {
        width: 70px;
        height: 70px;
    }

    .programs-container .circle-text[b-yljhp9c5s8] {
        font-size: 0.85rem;
    }

    .stat-value[b-yljhp9c5s8] {
        font-size: 1.5rem;
    }

    .stat-label[b-yljhp9c5s8] {
        font-size: 0.75rem;
    }

    .quick-stats .stat-card[b-yljhp9c5s8] {
        padding: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 575px) {
    .section-controls button[b-yljhp9c5s8] {
        padding: 0.25rem 0.5rem;
    }

    /* Two circles per row on very small screens */
    .demo-circle[b-yljhp9c5s8] {
        flex: 0 0 calc(50% - 1rem);
    }

    .demo-circles-compact .demo-circle[b-yljhp9c5s8] {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

.circle-chart[b-yljhp9c5s8] {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 0.5rem;
}

.circle-chart svg[b-yljhp9c5s8] {
    display: block;
    width: 100%;
    height: 100%;
}

.circle-bg[b-yljhp9c5s8] {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 10;
}

.circle-progress[b-yljhp9c5s8] {
    fill: none;
    stroke-width: 10;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1s ease-in-out;
}

.circle-text[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem 0;
    align-items: center;
}

.program-item[b-yljhp9c5s8] {
    display: flex;
    align-items: center;
    gap: 0;
}

.program-legend[b-yljhp9c5s8] {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.legend-line[b-yljhp9c5s8] {
    width: 25px;
    height: 2px;
    background-color: #000;
}

.legend-text[b-yljhp9c5s8] {
    margin-left: 10px;
}

.program-name[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--agile-yellow);
}

.personnel-name[b-yljhp9c5s8] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.personnel-title[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: var(--agile-teal);
}

/* Strategic Priorities */
.priority-card[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Proficiency Bars */
.proficiency-bar[b-yljhp9c5s8] {
    background: linear-gradient(90deg, #1278a8 0%, var(--agile-blue) 100%) !important;
}

/* Card Headers */
.card-header h5[b-yljhp9c5s8] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chevron[b-yljhp9c5s8] {
    color: var(--agile-teal);
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.card-header[b-yljhp9c5s8] {
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.card-header:hover[b-yljhp9c5s8] {
    background-color: #f0f7f8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-header:hover .chevron[b-yljhp9c5s8] {
    color: var(--agile-teal-dark);
    transform: scale(1.2);
}

/* Source Documents List */
.source-documents-list[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    margin-bottom: 0.5rem;
}

.source-documents-list a[b-yljhp9c5s8] {
    color: var(--agile-teal);
    text-decoration: none;
}

.source-documents-list a:hover[b-yljhp9c5s8] {
    text-decoration: underline;
}

/* Loading State */
.loading[b-yljhp9c5s8] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* Fiscal Information */
.fiscal-amount[b-yljhp9c5s8] {
    color: var(--agile-blue);
    font-weight: 600;
}

.fiscal-section-header[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    padding-left: 2rem;
}

/* Fiscal table header */
.fiscal-header-source[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    background-color: #f8f9fa;
}

#fiscal-table tbody tr:nth-child(even)[b-yljhp9c5s8] {
    background-color: white;
}

/* Business Opportunities */
.opportunity-card[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    cursor: pointer;
    padding: 1.5rem;
    transition: background-color 0.2s ease;
}

.opportunity-card-header:hover[b-yljhp9c5s8] {
    background-color: #f0f7f8;
}

.opportunity-title[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    transform: scale(1.2);
}

.opportunity-card-body[b-yljhp9c5s8] {
    padding: 0;
}

.opportunity-section[b-yljhp9c5s8] {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #e9ecef;
}

.section-label[b-yljhp9c5s8] {
    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-yljhp9c5s8] {
    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-yljhp9c5s8] {
    background-color: #E3F2FD;
}

.initiatives-section[b-yljhp9c5s8] {
    background-color: #E8F5E9;
}

.opportunities-section[b-yljhp9c5s8] {
    background-color: #FFF9E6;
}

.budget-section[b-yljhp9c5s8] {
    background-color: #F5F5F5;
}

/* Markdown content styling */
.markdown-content[b-yljhp9c5s8] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
}

.markdown-content h1[b-yljhp9c5s8], .markdown-content h2[b-yljhp9c5s8], .markdown-content h3[b-yljhp9c5s8],
.markdown-content h4[b-yljhp9c5s8], .markdown-content h5[b-yljhp9c5s8], .markdown-content h6[b-yljhp9c5s8] {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #1A1A1A;
}

.markdown-content h1[b-yljhp9c5s8] {
    font-size: 1.75rem;
}

.markdown-content h2[b-yljhp9c5s8] {
    font-size: 1.5rem;
}

.markdown-content h3[b-yljhp9c5s8] {
    font-size: 1.25rem;
}

.markdown-content h4[b-yljhp9c5s8] {
    font-size: 1.1rem;
}

.markdown-content p[b-yljhp9c5s8] {
    margin-bottom: 1rem;
}

.markdown-content strong[b-yljhp9c5s8] {
    font-weight: 700;
    color: var(--agile-teal);
}

.markdown-content ul[b-yljhp9c5s8], .markdown-content ol[b-yljhp9c5s8] {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.markdown-content li[b-yljhp9c5s8] {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.markdown-content a[b-yljhp9c5s8] {
    color: var(--agile-teal);
    text-decoration: underline;
}

.markdown-content a:hover[b-yljhp9c5s8] {
    color: var(--agile-teal-dark);
}

.markdown-content code[b-yljhp9c5s8] {
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.markdown-content pre[b-yljhp9c5s8] {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}

.markdown-content blockquote[b-yljhp9c5s8] {
    border-left: 4px solid var(--agile-yellow);
    padding-left: 1rem;
    margin: 1rem 0;
    color: #666;
    font-style: italic;
}

.markdown-content table[b-yljhp9c5s8] {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.markdown-content th[b-yljhp9c5s8] {
    background-color: var(--agile-yellow);
    color: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
}

.markdown-content td[b-yljhp9c5s8] {
    padding: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.markdown-content tr:nth-child(even)[b-yljhp9c5s8] {
    background-color: #f8f9fa;
}

/* Source URLs styling */
.source-urls-list[b-yljhp9c5s8] {
    list-style: none;
    padding-left: 0;
}

.source-urls-list li[b-yljhp9c5s8] {
    margin-bottom: 0.5rem;
}

.source-urls-list a[b-yljhp9c5s8] {
    color: var(--agile-teal);
    text-decoration: none;
    word-break: break-all;
}

.source-urls-list a:hover[b-yljhp9c5s8] {
    text-decoration: underline;
}
/* /Components/Pages/DistrictSearch.razor.rz.scp.css */
/* 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;
}

.btn-primary[b-mneq7006ry] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: #2C8A94;
    border: none;
}

.btn-primary:hover[b-mneq7006ry] {
    background: #1E5C64;
}

.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;
}
/* /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: 100vh;
    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;
    }
}
