/* /Components/BrandHeader.razor.rz.scp.css */
:root[b-q4b3ww8xko] {
    /* ensure component uses app color tokens if not already available */
}

.brand-header[b-q4b3ww8xko] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin: 0;
    padding: 12px 20px;
    box-sizing: border-box;
}

.brand-link[b-q4b3ww8xko] {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 12px;
}

.brand-logo[b-q4b3ww8xko] {
    width: 60px;
    height: 60px;
    display: block;
    flex: 0 0 64px;
}

.brand-text[b-q4b3ww8xko] {
    display: flex;
    flex-direction: column;
}

.brand-title[b-q4b3ww8xko] {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1;
    color: #0B2340;
    font-weight: 700;
}

.brand-tagline[b-q4b3ww8xko] {
    margin: 2px 0 0 0;
    font-size: 0.9rem;
    color: #3B5B6E;
}

.brand-banner img[b-q4b3ww8xko] {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* make header more compact on small screens */
@media (max-width: 576px) {
    .brand-header[b-q4b3ww8xko] {
        padding: 0.6rem 0.75rem;
        border-radius: 6px;
    }

    .brand-title[b-q4b3ww8xko] {
        font-size: 1.15rem;
    }

    .brand-tagline[b-q4b3ww8xko] {
        font-size: 0.85rem;
    }
}
/* /Components/FeedbackModal.razor.rz.scp.css */
/* ── Trigger button (fixed, bottom-right) ─────────────────────────── */
.feedback-trigger-btn[b-2n5emc081y] {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    padding: 0.45rem 1rem;
    background-color: #4a90d9;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease;
}

.feedback-trigger-btn:hover[b-2n5emc081y] {
    background-color: #357abd;
}

/* ── Overlay ──────────────────────────────────────────────────────── */
.feedback-overlay[b-2n5emc081y] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Modal panel ──────────────────────────────────────────────────── */
.feedback-modal[b-2n5emc081y] {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    width: min(560px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.feedback-header[b-2n5emc081y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e0e0e0;
}

.feedback-header h4[b-2n5emc081y] {
    margin: 0;
    font-size: 1.1rem;
}

.feedback-close[b-2n5emc081y] {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.25rem;
    color: #666;
}

.feedback-close:hover[b-2n5emc081y] {
    color: #000;
}

/* ── Body & fields ────────────────────────────────────────────────── */
.feedback-body[b-2n5emc081y] {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.feedback-field[b-2n5emc081y] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feedback-field label[b-2n5emc081y] {
    font-size: 0.875rem;
    font-weight: 600;
}

.feedback-field input[b-2n5emc081y],
.feedback-field textarea[b-2n5emc081y] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

.feedback-field input:focus[b-2n5emc081y],
.feedback-field textarea:focus[b-2n5emc081y] {
    outline: none;
    border-color: #4a90d9;
}

.feedback-field textarea[b-2n5emc081y] {
    resize: vertical;
    min-height: 130px;
}

.char-count[b-2n5emc081y] {
    font-size: 0.75rem;
    color: #888;
    text-align: right;
}

.required[b-2n5emc081y] {
    color: #d9534f;
}

.optional[b-2n5emc081y] {
    color: #888;
    font-weight: 400;
    font-size: 0.8rem;
}

/* ── Actions row ──────────────────────────────────────────────────── */
.feedback-actions[b-2n5emc081y] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding-top: 0.25rem;
}

.btn-cancel[b-2n5emc081y] {
    padding: 0.45rem 1rem;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-cancel:hover[b-2n5emc081y] {
    background-color: #f5f5f5;
}

.btn-submit[b-2n5emc081y] {
    padding: 0.45rem 1.25rem;
    background-color: #4a90d9;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.btn-submit:hover:not(:disabled)[b-2n5emc081y] {
    background-color: #357abd;
}

.btn-submit:disabled[b-2n5emc081y] {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ── Feedback & error states ──────────────────────────────────────── */
.feedback-success[b-2n5emc081y] {
    color: #3a7d44;
    font-weight: 600;
    text-align: center;
    padding: 1rem 0;
}

.feedback-error[b-2n5emc081y] {
    color: #d9534f;
    font-size: 0.875rem;
    margin: 0;
}
/* /Components/Financial/FinancialSchedule.razor.rz.scp.css */
.financial-schedule[b-owt18lh9ss] {
    margin-top: -1rem;
    margin-bottom: 40px;
}

.financial-schedule h2[b-owt18lh9ss] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.schedule-controls-wrapper[b-owt18lh9ss] {
    position: sticky;
    display: flex;
    justify-content: flex-end;
    z-index: 1000;
    pointer-events: none;
}

.schedule-controls[b-owt18lh9ss] {
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.table-responsive[b-owt18lh9ss] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.schedule-table[b-owt18lh9ss] {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    font-size: 0.8rem;
    border: 1px solid #d0d0d0;
}

/* Excel-like header styling */
.schedule-table thead tr[b-owt18lh9ss] {
    background: linear-gradient(to bottom, #4472C4 0%, #3b5ba5 100%);
}

.financial-schedule-name-header[b-owt18lh9ss],
.date-header[b-owt18lh9ss],
.total-header[b-owt18lh9ss] {
    background-color: transparent;
    color: white;
    padding: 8px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid #3460a8;
    border-bottom: 2px solid #2d4d87;
}

.financial-schedule-name-header[b-owt18lh9ss] {
    text-align: left;
    min-width: 180px;
}

.total-header[b-owt18lh9ss] {
    min-width: 90px;
    font-weight: 700;
}

/* Excel-like cell borders and styling */
.schedule-table tbody tr[b-owt18lh9ss] {
    transition: background-color 0.15s ease;
}

.schedule-table tbody tr td[b-owt18lh9ss] {
    position: relative;
}

.schedule-table tbody tr:hover:not(.separator-row) td[b-owt18lh9ss]::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(0,0,0,0.04);
}

.expense-name[b-owt18lh9ss],
.liquid-asset-name[b-owt18lh9ss],
.liquid-asset-value[b-owt18lh9ss],
.payment-cell[b-owt18lh9ss],
.total-cell[b-owt18lh9ss],
.summary-value[b-owt18lh9ss],
.summary-total[b-owt18lh9ss],
.summary-label[b-owt18lh9ss],
.income-name[b-owt18lh9ss],
.income-value[b-owt18lh9ss],
.debt-label[b-owt18lh9ss] {
    border: 1px solid #d0d0d0;
    padding: 5px 8px;
    vertical-align: middle;
    font-size: 0.8rem;
}

.expense-name[b-owt18lh9ss] {
    font-weight: 500;
    text-align: left;
    --base-color: #f9f9f9;
    background-color: var(--base-color);
    color: #1f1f1f;
    border-right: 1px solid #a6a6a6;
}

.payment-cell[b-owt18lh9ss] {
    text-align: right;
    background-color: white;
    color: #1f1f1f;
    min-width: 75px;
}

.has-payment[b-owt18lh9ss] {
    color: #0f6b0f;
    font-weight: 500;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.8rem;
}

.no-payment[b-owt18lh9ss] {
    color: #c0c0c0;
}

.total-cell[b-owt18lh9ss] {
    font-weight: 700;
    text-align: right;
    background-color: #f2f2f2;
    border-left: 2px solid #a6a6a6;
    color: #1f1f1f;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.8rem;
}

/* Debt row highlighting */
.debt-row .expense-name[b-owt18lh9ss] {
    background-color: #fff9e6;
    border-left: 3px solid #ffc107;
}

.debt-row .payment-cell[b-owt18lh9ss] {
    --base-color: #fffef5;
    background-color: var(--base-color);
}

/* Liquid Asset row highlighting */
.liquid-asset-row .liquid-asset-name[b-owt18lh9ss] {
    background-color: #e0f8ed;
    border-left: 3px solid #7abec1;
}

/* Separator rows */
.separator-row[b-owt18lh9ss] {
    height: 6px;
    background-color: #e8e8e8;
}

.separator-row td[b-owt18lh9ss] {
    border: none;
    padding: 0;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
}

/* Summary rows */
.summary-row td[b-owt18lh9ss] {
    font-weight: 700;
    border-top: 2px solid #a6a6a6;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.8rem;
}

.total-due td[b-owt18lh9ss] {
    background-color: #dae9f5;
    color: #1f1f1f;
}

.free-cash td[b-owt18lh9ss] {
    background-color: #e2f0d9;
    color: #1f1f1f;
}

.summary-label[b-owt18lh9ss] {
    padding: 6px 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f1f1f;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    background-color: inherit;
    text-align: left;
}

.summary-value[b-owt18lh9ss],
.summary-total[b-owt18lh9ss] {
    text-align: right;
    padding: 6px 10px;
    font-size: 0.8rem;
}

.summary-value.negative[b-owt18lh9ss] {
    color: #c00000;
    font-weight: 700;
}

.summary-value.positive[b-owt18lh9ss] {
    color: #0f6b0f;
    font-weight: 600;
}

.summary-total[b-owt18lh9ss] {
    border-left: 2px solid #a6a6a6;
    font-weight: 700;
}

/* Income rows */
.income-row td[b-owt18lh9ss] {
    background-color: #e6f2ff;
}

.income-name[b-owt18lh9ss] {
    padding: 6px 10px;
    font-weight: 600;
    color: #1f1f1f;
    background-color: #cce4ff;
    text-align: left;
    font-size: 0.8rem;
}

.income-value[b-owt18lh9ss] {
    text-align: right;
    padding: 6px 10px;
    color: #1f1f1f;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.8rem;
}

/* Liquid Asset rows */
.liquid-asset-row td[b-owt18lh9ss] {
    background-color: #e7f4f5;
}

.liquid-asset-name[b-owt18lh9ss] {
    padding: 6px 10px;
    font-weight: 600;
    color: #1f1f1f;
    background-color: #c5d0d1;
    text-align: left;
    font-size: 0.8rem;
}

.liquid-asset-value[b-owt18lh9ss] {
    text-align: right;
    padding: 6px 10px;
    color: #1f1f1f;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.8rem;
}

/* Debt tracking rows */
.debt-tracking-row td[b-owt18lh9ss] {
    background-color: #f5f5f5;
}

.debt-label[b-owt18lh9ss] {
    padding: 6px 10px;
    font-weight: 500;
    font-style: italic;
    color: #5a5a5a;
    background-color: #ebebeb;
    text-align: left;
    font-size: 0.8rem;
}

/* Form control styling within table */
.payment-cell input.form-control-sm[b-owt18lh9ss] {
    max-width: 90px;
    margin: 0;
    padding: 3px 6px;
    border: 1px solid #7eb4ea;
    border-radius: 2px;
    font-family: 'Consolas', 'Courier New', monospace;
    background-color: #fff;
    text-align: right;
    font-size: 0.8rem;
}

.payment-cell input.form-control-sm:focus[b-owt18lh9ss] {
    outline: 2px solid #4472C4;
    outline-offset: -1px;
    border-color: #4472C4;
    box-shadow: 0 0 0 3px rgba(68, 114, 196, 0.1);
}

.schedule-table tbody tr.debt-row:nth-child(even) .payment-cell[b-owt18lh9ss],
.schedule-table tbody tr.expense-row:nth-child(even) .payment-cell[b-owt18lh9ss] {
    background-image: linear-gradient(rgba(0,0,0,0.01), rgba(0,0,0,0.01));
    background-repeat: no-repeat;   
    background-size: cover;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .schedule-controls[b-owt18lh9ss] {
        flex-direction: column;
    }
    
    .schedule-controls button[b-owt18lh9ss] {
        width: 100%;
    }
    
    .schedule-table[b-owt18lh9ss] {
        font-size: 0.7rem;
    }
    
    .date-header[b-owt18lh9ss],
    .total-header[b-owt18lh9ss] {
        padding: 6px 5px;
        font-size: 0.65rem;
    }

    .expense-name[b-owt18lh9ss],
    .payment-cell[b-owt18lh9ss],
    .liquid-asset-name[b-owt18lh9ss],
    .total-cell[b-owt18lh9ss],
    .summary-value[b-owt18lh9ss],
    .summary-label[b-owt18lh9ss] {
        padding: 3px 5px;
        font-size: 0.7rem;
    }
}

/* Print styles for Excel-like appearance */
@media print {
    .schedule-controls[b-owt18lh9ss] {
        display: none;
    }
    
    .schedule-table[b-owt18lh9ss] {
        border: 1px solid #000;
    }
    
    .schedule-table td[b-owt18lh9ss],
    .schedule-table th[b-owt18lh9ss] {
        border: 1px solid #000;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-vankdy5j75] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-vankdy5j75] {
    flex: 1;
    min-width: 0;
}

.content[b-vankdy5j75] {
    min-width: 0;
}

.sidebar[b-vankdy5j75] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

/* Collapsed sidebar styles */
.page.collapsed-sidebar .sidebar[b-vankdy5j75] {
    width: 0px;
}

.page.collapsed-sidebar .sidebar[b-vankdy5j75]  .link-text {
    display: none;
}

.top-row[b-vankdy5j75] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-vankdy5j75]  a, .top-row[b-vankdy5j75]  .btn-link {
        white-space: nowrap;
        margin-left: .5rem;
        text-decoration: none;
    }

    .top-row[b-vankdy5j75]  a:hover, .top-row[b-vankdy5j75]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-vankdy5j75]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-vankdy5j75] {
        justify-content: space-between;
    }

    .top-row[b-vankdy5j75]  a, .top-row[b-vankdy5j75]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-vankdy5j75] {
        flex-direction: row;
    }

    .sidebar[b-vankdy5j75] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-vankdy5j75] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-vankdy5j75]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-vankdy5j75], article[b-vankdy5j75] {
        padding-left: .5rem !important;
        padding-right: 1.5rem !important;
    }
}

.table-responsive[b-vankdy5j75] {
  max-width: 100%;
  overflow-x: auto; /* already present, but keep to be explicit */
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ukfk4w253u] {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
}

.navbar-toggler:hover[b-ukfk4w253u] {
    background-color: rgba(255, 255, 255, 0.2);
}

.top-row[b-ukfk4w253u] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 3.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand[b-ukfk4w253u] {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
}

.navbar-brand .bi[b-ukfk4w253u] {
    font-size: 1.5rem;
}

.nav-scrollable[b-ukfk4w253u] {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    height: calc(100vh - 3.5rem);
}

.nav[b-ukfk4w253u] {
    flex: 1;
    padding: 1rem 0;
}

/* Section Styling */
.nav-section[b-ukfk4w253u] {
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    margin: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.nav-section:hover[b-ukfk4w253u] {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.nav-section-header[b-ukfk4w253u] {
    padding: 0.875rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #495057;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.nav-section-header:hover[b-ukfk4w253u] {
    background: linear-gradient(to right, #e9ecef, #f8f9fa);
    color: #212529;
}

.nav-section-header:active[b-ukfk4w253u] {
    transform: scale(0.98);
}

.nav-section-header > .bi:first-child[b-ukfk4w253u] {
    font-size: 1.25rem;
    color: #667eea;
}

.section-title[b-ukfk4w253u] {
    flex: 1;
}

.toggle-icon[b-ukfk4w253u] {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.toggle-icon.expanded[b-ukfk4w253u] {
    transform: rotate(180deg);
}

/* Section Content */
.nav-section-content[b-ukfk4w253u] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-section-content.show[b-ukfk4w253u] {
    max-height: 500px;
}

/* Nav Links */
.nav-link[b-ukfk4w253u] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 0.75rem;
    position: relative;
    font-size: 0.9rem;
}

.nav-link[b-ukfk4w253u]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #667eea;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.nav-link:hover[b-ukfk4w253u] {
    background-color: #f8f9fa;
    color: #212529;
    padding-left: 2.75rem;
}

.nav-link:hover[b-ukfk4w253u]::before {
    transform: scaleY(1);
}

.nav-link.active[b-ukfk4w253u] {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 0%, rgba(102, 126, 234, 0.05) 100%);
    color: #667eea;
    font-weight: 600;
}

.nav-link.active[b-ukfk4w253u]::before {
    transform: scaleY(1);
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.nav-link .bi[b-ukfk4w253u] {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.link-text[b-ukfk4w253u] {
    line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 640.98px) {
    .nav-scrollable[b-ukfk4w253u] {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-section[b-ukfk4w253u] {
        margin: 0.25rem;
    }

    .nav-section-header[b-ukfk4w253u] {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .nav-link[b-ukfk4w253u] {
        padding: 0.625rem 0.875rem 0.625rem 2.25rem;
        font-size: 0.875rem;
    }

    .nav-link:hover[b-ukfk4w253u] {
        padding-left: 2.5rem;
    }
}

/* Smooth scrolling */
.nav-scrollable[b-ukfk4w253u]::-webkit-scrollbar {
    width: 8px;
}

.nav-scrollable[b-ukfk4w253u]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.nav-scrollable[b-ukfk4w253u]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.nav-scrollable[b-ukfk4w253u]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Buy Me a Coffee Footer */
.nav-footer[b-ukfk4w253u] {
    position: sticky;
    bottom: 0;
    padding: 0.875rem 0.75rem;
    background: linear-gradient(to bottom, transparent, #e9ecef 30%);
    display: flex;
    justify-content: center;
}

.footer-span[b-ukfk4w253u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #495057;
}
/* /Pages/Finance/BudgetPlanner.razor.rz.scp.css */
/* Modal styling moved from the razor file to scoped CSS */
.modal-overlay[b-85r6drhv1f] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.modal-container[b-85r6drhv1f] {
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-content[b-85r6drhv1f] {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-header[b-85r6drhv1f] {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title[b-85r6drhv1f] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.modal-body[b-85r6drhv1f] {
    padding: 1rem;
    overflow-y: auto;
    flex: 1;
}

.modal-footer[b-85r6drhv1f] {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}
