/* /Pages/AudienceExplorer.razor.rz.scp.css */
.audience-container[b-bjnjubcfjv] {
    padding: 16px;
}

/* ═══════════════════════════════════════════════════════════
   CONTROL BAR
   ═══════════════════════════════════════════════════════════ */

.audience-controls[b-bjnjubcfjv] {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .audience-controls[b-bjnjubcfjv] {
        flex-direction: column;
        align-items: stretch;
    }
}

.audience-tabs[b-bjnjubcfjv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.audience-tab[b-bjnjubcfjv] {
    padding: 0.625rem 1.25rem;
    border: 1px solid #E8E5E0;
    border-radius: 8px;
    background: white;
    color: #555;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.audience-tab:hover[b-bjnjubcfjv] {
    border-color: var(--primary-color);
    background: #F0EFED;
}

/* Audience 1 active: green */
.audience-tab.active[b-bjnjubcfjv] {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(47, 158, 139, 0.3);
    font-weight: 600;
}

.indicator[b-bjnjubcfjv] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.indicator-1[b-bjnjubcfjv] {
    background: var(--primary-color);
}

.audience-tab.active .indicator-1[b-bjnjubcfjv] {
    background: white;
}

.indicator-2[b-bjnjubcfjv] {
    background: #f59e0b;
}

/* Audience 2 active: orange button */
.audience-tab.active .indicator-2[b-bjnjubcfjv] {
    background: white;
}

/* Override: when Audience 2 tab is active, make it orange */
.audience-tab:nth-of-type(2).active[b-bjnjubcfjv] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: #d97706;
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Compare Mode toggle - match height of .audience-tab */
.comparison-toggle[b-bjnjubcfjv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    padding: 0.625rem 1.25rem;
    background: #F0EFED;
    border-radius: 8px;
    line-height: 1.4;
    font-size: 0.875rem;
}

.toggle-label[b-bjnjubcfjv] {
    font-weight: 500;
    color: #555;
    font-size: 0.875rem;
}

.switch[b-bjnjubcfjv] {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
    flex-shrink: 0;
}

.switch input[b-bjnjubcfjv] {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider[b-bjnjubcfjv] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 22px;
}

.slider[b-bjnjubcfjv]:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider[b-bjnjubcfjv] {
    background-color: var(--primary-color);
}

input:checked + .slider[b-bjnjubcfjv]:before {
    transform: translateX(22px);
}

/* Save / Load row */
.audience-save-load[b-bjnjubcfjv] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.input-group[b-bjnjubcfjv] {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-width: 250px;
}

.form-control[b-bjnjubcfjv] {
    padding: 0.625rem 1rem;
    border: 1px solid #E8E5E0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.15s ease;
    flex: 1;
    background: white;
    color: #555;
    line-height: 1.4;
}

.form-control:focus[b-bjnjubcfjv] {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(47, 158, 139, 0.1);
}

.dropdown-wrapper[b-bjnjubcfjv] {
    flex: 1;
    min-width: 200px;
}

/* ═══════════════════════════════════════════════════════════
   SUMMARY PANEL (green card)
   ═══════════════════════════════════════════════════════════ */

.sticky-summary-panel[b-bjnjubcfjv] {
    margin-bottom: 2rem;
}

.summary-card[b-bjnjubcfjv] {
    background: var(--panel-header-bg) !important;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Force white text on everything inside the green card */
.summary-card[b-bjnjubcfjv],
.summary-card *[b-bjnjubcfjv] {
    color: white !important;
}

/* Title bar inside the green panel */
.summary-title-bar[b-bjnjubcfjv] {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent !important;
}

.summary-title-bar i[b-bjnjubcfjv] {
    opacity: 0.85;
}

/* Body: single or comparison */
.summary-body[b-bjnjubcfjv] {
    padding: 1.25rem 1.5rem;
    background: transparent !important;
}

.summary-body.compare-body[b-bjnjubcfjv] {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
}

/* Each audience half */
.audience-half[b-bjnjubcfjv] {
    display: flex;
    flex-direction: column;
    background: transparent !important;
}

.summary-body.compare-body .audience-half[b-bjnjubcfjv] {
    flex: 1;
    padding: 1.25rem 1.5rem;
}

/* Audience label row (inside panel, above scores) */
.aud-half-label[b-bjnjubcfjv] {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent !important;
}

.aud-dot[b-bjnjubcfjv] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.aud-dot-1[b-bjnjubcfjv] {
    background: white !important;
}

.aud-dot-2[b-bjnjubcfjv] {
    background: #fbbf24 !important;
}

/* Vertical divider between Audience 1 and 2 */
.audience-divider[b-bjnjubcfjv] {
    width: 2px;
    background: rgba(255, 255, 255, 0.25) !important;
    align-self: stretch;
    flex-shrink: 0;
}

/* Scores row: 4 equal columns */
.scores-row[b-bjnjubcfjv] {
    display: flex;
    align-items: flex-end;
    background: transparent !important;
}

.score-col[b-bjnjubcfjv] {
    flex: 1;
    text-align: center;
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: transparent !important;
}

/* Subtle dividers between score columns */
.score-col + .score-col[b-bjnjubcfjv] {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.score-header[b-bjnjubcfjv] {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    white-space: nowrap;
    background: transparent !important;
}

.score-value[b-bjnjubcfjv] {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.score-value i[b-bjnjubcfjv] {
    font-size: 1.75rem;
}

/* ═══════════════════════════════════════════════════════════
   CHANGES ROW (dedicated row below scores)
   ═══════════════════════════════════════════════════════════ */

.changes-row[b-bjnjubcfjv] {
    display: flex;
    margin-top: 0.75rem;
    min-height: 1.75rem; /* always reserve space */
    background: transparent !important;
}

.change-cell[b-bjnjubcfjv] {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.change-pill[b-bjnjubcfjv] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1.2;
}

.change-up[b-bjnjubcfjv] {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #16a34a !important;
}

.change-up i[b-bjnjubcfjv] {
    color: #16a34a !important;
}

.change-down[b-bjnjubcfjv] {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #dc2626 !important;
}

.change-down i[b-bjnjubcfjv] {
    color: #dc2626 !important;
}

/* ═══════════════════════════════════════════════════════════
   FILTER SECTIONS
   ═══════════════════════════════════════════════════════════ */

.filters-section[b-bjnjubcfjv] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.filters-section.theme-purple .filter-category-title[b-bjnjubcfjv]::before {
    background: var(--primary-color);
}

.filters-section.theme-gold .filter-category-title[b-bjnjubcfjv]::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.filters-section.theme-gold .filter-button.active[b-bjnjubcfjv] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: #d97706;
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.filters-section.theme-gold .filter-button.active:hover[b-bjnjubcfjv] {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.filter-category[b-bjnjubcfjv] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid #E8E5E0;
    transition: all 0.15s ease;
}

.filter-category:hover[b-bjnjubcfjv] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #D4D1CC;
}

.filter-category-title[b-bjnjubcfjv] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #37352F;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E8E5E0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-category-title[b-bjnjubcfjv]::before {
    content: '';
    width: 5px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 8px;
}

.filter-buttons-grid[b-bjnjubcfjv] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.filter-button[b-bjnjubcfjv] {
    position: relative;
    padding: 1.5rem 1.5rem;
    background: #F0EFED;
    border: 1px solid #E8E5E0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 5rem;
    width: 100%;
    box-sizing: border-box;
}

.filter-button:hover:not(.active)[b-bjnjubcfjv] {
    border-color: var(--primary-color);
    background: #F7F7F5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-button.active[b-bjnjubcfjv] {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(47, 158, 139, 0.3);
    transform: scale(1.01);
    font-weight: 600;
}

.filter-button.active:hover[b-bjnjubcfjv] {
    transform: scale(1.01) translateY(-1px);
    box-shadow: 0 6px 16px rgba(47, 158, 139, 0.4);
    background: var(--primary-hover);
}

.filter-button-label[b-bjnjubcfjv] {
    line-height: 1.4;
    text-align: center;
    word-wrap: break-word;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   ACTION BUTTONS & REPORT
   ═══════════════════════════════════════════════════════════ */

.audience-actions[b-bjnjubcfjv] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn[b-bjnjubcfjv] {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.btn:disabled[b-bjnjubcfjv] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-large[b-bjnjubcfjv] {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary[b-bjnjubcfjv] {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-bjnjubcfjv] {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 158, 139, 0.3);
}

.btn-secondary[b-bjnjubcfjv] {
    background: #F0EFED;
    color: #555;
    border: 1px solid #E8E5E0;
}

.btn-secondary:hover[b-bjnjubcfjv] {
    background: #E8E5E0;
    border-color: #D4D1CC;
}

.report-results[b-bjnjubcfjv] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.report-header[b-bjnjubcfjv] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border: 1px solid #E8E5E0;
    border-left: 4px solid var(--primary-color);
}

.report-header-top[b-bjnjubcfjv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.report-header h2[b-bjnjubcfjv] {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 600;
    color: #37352F;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.report-header h2 i[b-bjnjubcfjv] {
    color: var(--primary-color);
}

.report-info[b-bjnjubcfjv] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #6b7280;
}

.report-info span[b-bjnjubcfjv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #F0EFED;
    border-radius: 8px;
    border: 1px solid #E8E5E0;
}

.report-info strong[b-bjnjubcfjv] {
    color: #37352F;
    font-weight: 600;
}

.question-table-container[b-bjnjubcfjv] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid #E8E5E0;
    transition: all 0.15s ease;
}

.question-table-container:hover[b-bjnjubcfjv] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #D4D1CC;
}

.question-header[b-bjnjubcfjv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E8E5E0;
}

.question-title[b-bjnjubcfjv] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #37352F;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.question-icon[b-bjnjubcfjv] {
    color: var(--primary-color);
    font-size: 1rem;
}

.question-actions[b-bjnjubcfjv] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-icon-sm[b-bjnjubcfjv] {
    background: none;
    border: 1px solid #E8E5E0;
    border-radius: 6px;
    padding: 0.375rem 0.5rem;
    cursor: pointer;
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.btn-icon-sm:hover[b-bjnjubcfjv] {
    background: #F0EFED;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.question-table-wrapper[b-bjnjubcfjv] {
    overflow-x: auto;
}

.question-table[b-bjnjubcfjv] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.question-table thead[b-bjnjubcfjv] {
    background: #F7F7F5;
    border-bottom: 1px solid #E8E5E0;
}

.question-table th[b-bjnjubcfjv] {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #37352F;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-table th.text-right[b-bjnjubcfjv] {
    text-align: right;
}

.question-table td[b-bjnjubcfjv] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #E8E5E0;
    color: #37352F;
}

.question-table td.text-right[b-bjnjubcfjv] {
    text-align: right;
    font-weight: 500;
}

.question-table td.percentage-cell[b-bjnjubcfjv] {
    color: var(--primary-color);
    font-weight: 600;
}

.question-table tr.total-row[b-bjnjubcfjv] {
    background: #F7F7F5;
    border-top: 1px solid #E8E5E0;
}

.question-table tr.total-row td[b-bjnjubcfjv] {
    font-weight: 700;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.question-table tbody tr:hover[b-bjnjubcfjv] {
    background: #F0EFED;
}

.alert[b-bjnjubcfjv] {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-info[b-bjnjubcfjv] {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    color: #1e40af;
}

.alert-warning[b-bjnjubcfjv] {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    color: #92400e;
}

@media (max-width: 768px) {
    .filter-buttons-grid[b-bjnjubcfjv] {
        grid-template-columns: 1fr;
    }

    .audience-actions[b-bjnjubcfjv] {
        flex-direction: column;
    }

    .btn-large[b-bjnjubcfjv] {
        width: 100%;
        justify-content: center;
    }

    .summary-body.compare-body[b-bjnjubcfjv] {
        flex-direction: column;
    }

    .audience-divider[b-bjnjubcfjv] {
        width: 100%;
        height: 2px;
    }

    .score-value[b-bjnjubcfjv] {
        font-size: 1.75rem;
        height: 2.25rem;
    }
}

.question-table-footer[b-bjnjubcfjv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light, #666);
}
/* /Pages/Contact.razor.rz.scp.css */
/* FAQ items */
.faq-list[b-lvwraj77me] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item[b-lvwraj77me] {
    padding: 1rem 1.25rem;
    background: var(--bg-light, #f9fafb);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-question[b-lvwraj77me] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
}

.faq-answer[b-lvwraj77me] {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact details */
.contact-details-grid[b-lvwraj77me] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.contact-detail-block[b-lvwraj77me] {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-light, #f9fafb);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-detail-icon[b-lvwraj77me] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a94a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
}

/* Contact form */
.contact-form[b-lvwraj77me] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form-grid[b-lvwraj77me] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group[b-lvwraj77me] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label[b-lvwraj77me] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required[b-lvwraj77me] {
    color: #dc3545;
}

.form-control[b-lvwraj77me] {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-family: inherit;
    background: white;
}

.form-control:focus[b-lvwraj77me] {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(166, 138, 58, 0.15);
}

.form-control[b-lvwraj77me]::placeholder {
    color: #9ca3af;
}

textarea.form-control[b-lvwraj77me] {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-actions[b-lvwraj77me] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.form-actions .btn[b-lvwraj77me] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Palette-aligned Send button */
.form-actions .btn.btn-primary[b-lvwraj77me] {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a94a 100%);
    border: none;
    color: #ffffff;
}

.form-actions .btn.btn-primary:hover[b-lvwraj77me] {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .contact-form-grid[b-lvwraj77me] {
        grid-template-columns: 1fr;
    }

    .contact-details-grid[b-lvwraj77me] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/DashboardSettings.razor.rz.scp.css */
/* Dashboard Settings page styles */
.settings-group[b-edrmplrnes] {
    margin-bottom: 1.75rem;
}

.settings-group:last-child[b-edrmplrnes] {
    margin-bottom: 0;
}

.settings-label[b-edrmplrnes] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.settings-label span[b-edrmplrnes] {
    font-size: 0.9375rem;
    font-weight: 600;
}

.settings-toggle[b-edrmplrnes] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.settings-toggle input[type="checkbox"][b-edrmplrnes] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
}

.settings-group .text-muted[b-edrmplrnes] {
    display: block;
    margin-top: 0.375rem;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* User Management & Metadata Manager buttons – use theme colours */
.chart-panel .btn-primary[b-edrmplrnes] {
    background: var(--primary-color);
    color: var(--text-white, white);
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-panel .btn-primary:hover[b-edrmplrnes] {
    background: var(--primary-hover);
    transition: background-color 0.15s ease;
}
/* /Pages/DataExplorer.razor.rz.scp.css */
.data-explorer-container[b-r36c81qtkp] {
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.data-explorer-header[b-r36c81qtkp] {
    margin-bottom: 2.5rem;
}

.data-explorer-header h1[b-r36c81qtkp] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.data-explorer-header h1 i[b-r36c81qtkp] {
    color: var(--primary-color);
}

.data-explorer-header p[b-r36c81qtkp] {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.data-explorer-controls[b-r36c81qtkp] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
}

.control-panel[b-r36c81qtkp] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: end;
}

.control-group[b-r36c81qtkp] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-group label[b-r36c81qtkp] {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-group label i[b-r36c81qtkp] {
    color: var(--primary-color);
}

.form-control[b-r36c81qtkp] {
    padding: 0.625rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

.form-control:focus[b-r36c81qtkp] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.control-actions[b-r36c81qtkp] {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.controls-toggle-bar[b-r36c81qtkp] {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-end;
}

.btn[b-r36c81qtkp] {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:disabled[b-r36c81qtkp] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary[b-r36c81qtkp] {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-r36c81qtkp] {
    background: var(--primary-hover);
}

.btn-secondary[b-r36c81qtkp] {
    background: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover[b-r36c81qtkp] {
    background: #d1d5db;
}

.btn-success[b-r36c81qtkp] {
    background: #10b981;
    color: white;
}

.btn-success:hover:not(:disabled)[b-r36c81qtkp] {
    background: #059669;
}

.btn-danger[b-r36c81qtkp] {
    background: #ef4444;
    color: white;
}

.btn-danger:hover:not(:disabled)[b-r36c81qtkp] {
    background: #dc2626;
}

.btn-outline-primary[b-r36c81qtkp] {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover:not(:disabled)[b-r36c81qtkp] {
    background: var(--primary-color);
    color: white;
}

.cross-tab-container[b-r36c81qtkp] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 1.5rem;
    width: 100%;
}

.cross-tab-header[b-r36c81qtkp] {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e5e7eb;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.cross-tab-header-content[b-r36c81qtkp] {
    flex: 1;
}

.cross-tab-header h3[b-r36c81qtkp] {
    margin: 0 0 1rem 0;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cross-tab-header-actions[b-r36c81qtkp] {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.btn-export[b-r36c81qtkp] {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin: 0 10px;
}

.btn-export:hover:not(:disabled)[b-r36c81qtkp] {
    background: var(--primary-hover);
}

.btn-options[b-r36c81qtkp] {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin: 0 10px;
}

.btn-options:hover[b-r36c81qtkp] {
    background: var(--secondary-color);
    filter: brightness(1.2);
}

.btn-sm[b-r36c81qtkp] {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.cross-tab-header h3[b-r36c81qtkp]::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.cross-tab-info[b-r36c81qtkp] {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.cross-tab-info span[b-r36c81qtkp] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.cross-tab-info strong[b-r36c81qtkp] {
    color: var(--text-dark);
    font-weight: 600;
}

.cross-tab-table-wrapper[b-r36c81qtkp] {
    overflow-x: auto;
    width: 100%;
    position: relative;
}

.cross-tab-table[b-r36c81qtkp] {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    font-size: 0.875rem;
    border: 2px solid #6b7280 !important;
    border-radius: 8px;
    overflow: hidden;
    background: white !important;
}

.cross-tab-table thead[b-r36c81qtkp] {
    background: var(--panel-header-bg) !important;
    border-bottom: 3px solid var(--primary-color) !important;
}

body[data-ui-theme="minimal"] .cross-tab-table thead[b-r36c81qtkp] {
    background: #f3f4f6 !important;
    border-bottom: 3px solid #d1d5db !important;
}

.cross-tab-table th[b-r36c81qtkp] {
    padding: 1rem 1.25rem !important;
    text-align: left !important;
    font-weight: 700 !important;
    color: white !important;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 2px solid var(--primary-color) !important;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    background: transparent !important;
}

body[data-ui-theme="minimal"] .cross-tab-table th[b-r36c81qtkp] {
    color: #374151 !important;
    border-right: 1px solid #d1d5db !important;
    border-bottom: 2px solid #d1d5db !important;
}

.cross-tab-table th:first-child[b-r36c81qtkp] {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.cross-tab-table th:last-child[b-r36c81qtkp] {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cross-tab-table th.row-header[b-r36c81qtkp] {
    background: var(--panel-header-bg) !important;
    font-weight: 700 !important;
    min-width: 200px;
    position: sticky;
    left: 0;
    z-index: 10;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
    color: white !important;
}

.cross-tab-table th.total-col[b-r36c81qtkp] {
    background: var(--panel-header-bg);
    color: white;
    font-weight: 700;
    text-align: right;
    padding-right: 1.5rem;
}

body[data-ui-theme="minimal"] .cross-tab-table th.row-header[b-r36c81qtkp],
body[data-ui-theme="minimal"] .cross-tab-table th.total-col[b-r36c81qtkp] {
    background: #e5e7eb !important;
    color: #374151 !important;
}

.cross-tab-table tbody[b-r36c81qtkp] {
    background: white;
}

.cross-tab-table td[b-r36c81qtkp] {
    padding: 0.875rem 1.25rem !important;
    border-right: 1px solid #9ca3af !important;
    border-bottom: 1px solid #9ca3af !important;
    white-space: nowrap;
    transition: background-color 0.15s ease;
}

.cross-tab-table td:first-child[b-r36c81qtkp] {
    border-left: 1px solid #9ca3af;
}

.cross-tab-table td:last-child[b-r36c81qtkp] {
    border-right: 1px solid #9ca3af;
}

.cross-tab-table td.row-header[b-r36c81qtkp] {
    background: #f9fafb;
    font-weight: 600;
    color: var(--text-dark);
    position: sticky;
    left: 0;
    z-index: 5;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-right: 2px solid #6b7280;
}

.cross-tab-table tbody tr:nth-child(even) td.row-header[b-r36c81qtkp] {
    background: #f3f4f6;
    border-right: 2px solid #6b7280;
}

.cross-tab-table tr.base-row[b-r36c81qtkp] {
    background: #e8eaf0;
    border-bottom: 2px solid #6b7280;
}

.cross-tab-table tr.base-row td[b-r36c81qtkp] {
    background: #e8eaf0;
    font-weight: 700;
    text-align: right;
    color: var(--text-dark);
}

.cross-tab-table tr.base-row td.row-header[b-r36c81qtkp] {
    background: #d8dce8;
    border-right: 2px solid #6b7280;
    text-align: left;
}

.cross-tab-table td.base-cell[b-r36c81qtkp] {
    background: #e8eaf0 !important;
}

.cross-tab-table td.count-cell[b-r36c81qtkp] {
    text-align: right;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    padding-right: 1.5rem;
}

.cross-tab-table td.percentage-cell[b-r36c81qtkp] {
    text-align: right;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: #667eea;
    padding-right: 1.5rem;
}

.cross-tab-table td.total-col[b-r36c81qtkp] {
    background: #f3f4f6;
    font-weight: 700;
    text-align: right;
    border-top: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    border-left: 1px solid #9ca3af;
    border-right: 1px solid #9ca3af;
    padding-right: 1.5rem;
    color: var(--text-dark);
}

.cross-tab-table td.total-col-clickable[b-r36c81qtkp] {
    vertical-align: middle;
}

.cross-tab-table .total-col-link[b-r36c81qtkp] {
    color: #4338ca;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    border: none;
    background: none;
}

.cross-tab-table .total-col-link:hover[b-r36c81qtkp] {
    color: #667eea;
    text-decoration: underline;
}

.cross-tab-table .total-col-link:focus[b-r36c81qtkp] {
    outline: none;
}

.cross-tab-table tr.total-row[b-r36c81qtkp] {
    background: #e5e7eb;
    border-top: 3px solid #667eea;
}

.cross-tab-table tr.total-row td[b-r36c81qtkp] {
    font-weight: 700;
    border-top: 3px solid #667eea;
    border-bottom: 2px solid #667eea;
    border-left: 1px solid #9ca3af;
    border-right: 1px solid #9ca3af;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: #e5e7eb;
}

.cross-tab-table tr.total-row td.row-header[b-r36c81qtkp] {
    background: #d1d5db;
    border-right: 3px solid #667eea;
    border-top: 3px solid #667eea;
    border-bottom: 2px solid #667eea;
}

.cross-tab-table tbody tr[b-r36c81qtkp] {
    background: white !important;
}

.cross-tab-table tbody tr:nth-child(even)[b-r36c81qtkp] {
    background: #f9fafb !important;
}

.cross-tab-table tbody tr:last-child td[b-r36c81qtkp] {
    border-bottom: 2px solid #9ca3af;
}

.cross-tab-table tbody tr:hover[b-r36c81qtkp] {
    background: #f0f9ff;
}

.cross-tab-table tbody tr:nth-child(even):hover[b-r36c81qtkp] {
    background: #e0f2fe;
}

.cross-tab-table tbody tr:hover td.row-header[b-r36c81qtkp] {
    background: #f0f9ff;
}

.cross-tab-table tbody tr:nth-child(even):hover td.row-header[b-r36c81qtkp] {
    background: #e0f2fe;
}

.alert[b-r36c81qtkp] {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-info[b-r36c81qtkp] {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    color: #1e40af;
}

.alert-warning[b-r36c81qtkp] {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    color: #92400e;
}

.saved-reports-section[b-r36c81qtkp] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
}

.saved-reports-section h3[b-r36c81qtkp] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.saved-reports-section h3 i[b-r36c81qtkp] {
    color: var(--primary-color);
}

.saved-reports-list[b-r36c81qtkp] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.saved-report-item[b-r36c81qtkp] {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.saved-report-item:hover[b-r36c81qtkp] {
    background: #f3f4f6;
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
}

.saved-report-info[b-r36c81qtkp] {
    flex: 1;
    min-width: 0;
}

.saved-report-info h4[b-r36c81qtkp] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.saved-report-meta[b-r36c81qtkp] {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
}

.saved-report-meta i[b-r36c81qtkp] {
    font-size: 0.75rem;
}

.report-separator[b-r36c81qtkp] {
    color: #d1d5db;
}

.saved-report-actions[b-r36c81qtkp] {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .control-panel[b-r36c81qtkp] {
        grid-template-columns: 1fr;
    }
    
    .control-actions[b-r36c81qtkp] {
        flex-direction: column;
    }
    
    .btn[b-r36c81qtkp] {
        width: 100%;
        justify-content: center;
    }

    .saved-report-item[b-r36c81qtkp] {
        flex-direction: column;
        align-items: flex-start;
    }

    .saved-report-actions[b-r36c81qtkp] {
        width: 100%;
    }

    .saved-report-actions .btn[b-r36c81qtkp] {
        flex: 1;
    }
}

/* /Pages/Heatmap.razor.rz.scp.css */
/* Heatmap Controls */
.heatmap-controls[b-dbmvgtuux1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    gap: 1rem;
}

.control-group[b-dbmvgtuux1] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.buttons-group[b-dbmvgtuux1] {
    flex-direction: row !important;
    flex-shrink: 0;
}

.control-group .btn[b-dbmvgtuux1] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Legend/Control Items - unified inline styling */
.heatmap-legend[b-dbmvgtuux1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.legend-icon[b-dbmvgtuux1] {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.legend-label[b-dbmvgtuux1] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.legend-low[b-dbmvgtuux1],
.legend-high[b-dbmvgtuux1] {
    font-size: 0.6875rem;
    color: #6b7280;
    font-weight: 500;
}

.gradient-bar[b-dbmvgtuux1] {
    width: 80px;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #ef4444, #facc15, #16a34a);
}

/* Outlier Slider */
.outlier-legend[b-dbmvgtuux1] {
    order: 3;
    min-width: 260px;
    justify-content: flex-start;
}

.outlier-slider[b-dbmvgtuux1] {
    width: 130px;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, #e5e7eb, var(--primary-color));
    appearance: none;
    cursor: pointer;
}

/* Reserve consistent space for the outlier labels so they don't jump
   when switching between "All", "Btm 100%" etc. */
.outlier-legend .legend-low[b-dbmvgtuux1],
.outlier-legend .legend-high[b-dbmvgtuux1] {
    min-width: 3.25rem;
    text-align: center;
}

.outlier-slider[b-dbmvgtuux1]::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease;
}

.outlier-slider[b-dbmvgtuux1]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.outlier-slider[b-dbmvgtuux1]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Help Button */
.help-btn[b-dbmvgtuux1] {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.help-btn:hover[b-dbmvgtuux1] {
    color: var(--primary-color);
}

/* Help Modal */
.modal-backdrop[b-dbmvgtuux1] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.help-modal[b-dbmvgtuux1] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%;
    overflow: hidden;
}

.modal-header[b-dbmvgtuux1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--panel-header-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: white;
}

.modal-header h4[b-dbmvgtuux1] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close[b-dbmvgtuux1] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover[b-dbmvgtuux1] {
    background: rgba(255, 255, 255, 0.3);
}

/* Minimal theme: dark text on light background */
body[data-ui-theme="minimal"] .modal-header[b-dbmvgtuux1] {
    color: #374151;
}

body[data-ui-theme="minimal"] .modal-header h4[b-dbmvgtuux1] {
    color: #374151;
}

body[data-ui-theme="minimal"] .modal-close[b-dbmvgtuux1] {
    background: rgba(0, 0, 0, 0.1);
    color: #374151;
}

body[data-ui-theme="minimal"] .modal-close:hover[b-dbmvgtuux1] {
    background: rgba(0, 0, 0, 0.15);
}

.modal-body[b-dbmvgtuux1] {
    padding: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.modal-body p[b-dbmvgtuux1] {
    margin: 0 0 1rem 0;
}

.modal-body ul[b-dbmvgtuux1] {
    margin: 0 0 1rem 0;
    padding-left: 1.25rem;
}

.modal-body li[b-dbmvgtuux1] {
    margin-bottom: 0.5rem;
}

.help-gradient-demo[b-dbmvgtuux1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.gradient-sample[b-dbmvgtuux1] {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}

.gradient-sample.red[b-dbmvgtuux1] {
    background: #ef4444;
}

.gradient-sample.yellow[b-dbmvgtuux1] {
    background: #fef08a;
}

.gradient-sample.green[b-dbmvgtuux1] {
    background: #22c55e;
}

.help-note[b-dbmvgtuux1] {
    background: #f0f9ff;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 0 !important;
    font-size: 0.8125rem;
}

.control-group .btn-outline-primary[b-dbmvgtuux1] {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.control-group .btn-outline-primary:hover[b-dbmvgtuux1] {
    background: var(--primary-color);
    color: white;
}

.control-group .btn-outline-secondary[b-dbmvgtuux1] {
    border: 1px solid #6b7280;
    color: #6b7280;
    background: transparent;
}

.control-group .btn-outline-secondary:hover[b-dbmvgtuux1] {
    background: #6b7280;
    color: white;
}

/* Heatmap Container */
.heatmap-container[b-dbmvgtuux1] {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow-x: auto;
    overflow-y: auto;
    max-height: calc(100vh - 220px);
}

/* Heatmap Table */
.heatmap-table[b-dbmvgtuux1] {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.875rem;
    table-layout: fixed;
    background: #f3f4f6;
}

/* Header Styles - Sticky */
.heatmap-table thead[b-dbmvgtuux1] {
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-group-row th[b-dbmvgtuux1] {
    background: #1f2937;
    color: white;
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.8125rem;
    border-bottom: 2px solid #374151;
}

.header-group-row th i[b-dbmvgtuux1] {
    margin-right: 0.375rem;
}

.hotel-header[b-dbmvgtuux1] {
    text-align: left !important;
    padding-left: 1rem !important;
    width: 340px;
    min-width: 300px;
    background: #111827 !important;
    position: sticky;
    left: 0;
    z-index: 12;
}

.theme-group[b-dbmvgtuux1] {
    border-left: 2px solid #374151;
}

/* Compact metric columns - narrower to give more room to hotel names */
.metric-header[b-dbmvgtuux1] {
    width: 58px;
    min-width: 58px;
    max-width: 58px;
}

.staff-group[b-dbmvgtuux1] {
    background: #1e3a5f !important;
}

.room-group[b-dbmvgtuux1] {
    background: #3d2c5e !important;
}

.restaurant-group[b-dbmvgtuux1] {
    background: #4a3728 !important;
}

.header-metric-row th[b-dbmvgtuux1] {
    background: #374151;
    color: #e5e7eb;
    padding: 0.5rem 0.25rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.6875rem;
    white-space: nowrap;
    border-bottom: 1px solid #4b5563;
    border-left: none;
}

.staff-metric[b-dbmvgtuux1] {
    background: #d4dde8 !important;
    color: #1e3a5f !important;
}

/* First metric header - ensure no gap */
.staff-metric:first-of-type[b-dbmvgtuux1] {
    border-left: 2px solid #374151 !important;
}

.room-metric[b-dbmvgtuux1] {
    background: #dbd6e3 !important;
    color: #3d2c5e !important;
}

.restaurant-metric[b-dbmvgtuux1] {
    background: #ddd7d1 !important;
    color: #4a3728 !important;
}

/* Country Row */
.country-row[b-dbmvgtuux1] {
    background: linear-gradient(to right, #f8fafc, #f1f5f9);
    cursor: pointer;
    transition: background 0.15s ease;
}

.country-row:hover[b-dbmvgtuux1] {
    background: linear-gradient(to right, #e2e8f0, #e5e7eb);
}

.country-row.expanded[b-dbmvgtuux1] {
    background: linear-gradient(to right, #e2e8f0, #dbeafe);
}

.country-cell[b-dbmvgtuux1] {
    padding: 0.875rem 1rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border-bottom: 2px solid #cbd5e1;
    position: sticky;
    left: 0;
    z-index: 5;
    background: linear-gradient(to right, #f8fafc, #f1f5f9);
}

/* Suppress default link styling so country/hotel names match body text (no blue, no underline) */
.country-link[b-dbmvgtuux1],
.country-link:link[b-dbmvgtuux1],
.country-link:visited[b-dbmvgtuux1],
.country-link:hover[b-dbmvgtuux1],
.country-link:active[b-dbmvgtuux1] {
    color: var(--text-dark);
    text-decoration: none;
}
.country-link[b-dbmvgtuux1] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    cursor: pointer;
    outline: none;
}
.country-link:focus-visible[b-dbmvgtuux1] {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Flag icon in country row - reduced size */
.country-cell .flag-icon[b-dbmvgtuux1] {
    font-size: 0.625rem;
    flex-shrink: 0;
    border-radius: 1px;
}

.expand-icon[b-dbmvgtuux1] {
    font-size: 0.75rem;
    color: #475569;
    width: 1rem;
    transition: transform 0.2s ease;
}

.country-name[b-dbmvgtuux1] {
    flex: 1;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.hotel-count[b-dbmvgtuux1] {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
}

/* Country row heatmap cells - slightly bolder */
.country-row .heatmap-cell[b-dbmvgtuux1] {
    font-size: 0.9375rem;
    font-weight: 700;
}

/* Hotel Row */
.hotel-row[b-dbmvgtuux1] {
    background: white;
    transition: background 0.15s ease;
}

.hotel-row:hover[b-dbmvgtuux1] {
    background: #f9fafb;
}

.hotel-cell[b-dbmvgtuux1] {
    padding: 0.625rem 1rem;
    padding-left: 2.5rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    left: 0;
    z-index: 4;
    background: white;
}

/* Suppress default link styling so hotel names match body text (no blue, no underline) */
.hotel-link[b-dbmvgtuux1],
.hotel-link:link[b-dbmvgtuux1],
.hotel-link:visited[b-dbmvgtuux1],
.hotel-link:hover[b-dbmvgtuux1],
.hotel-link:active[b-dbmvgtuux1] {
    color: var(--text-dark);
    text-decoration: none;
}
.hotel-link[b-dbmvgtuux1] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    outline: none;
}
.hotel-link:focus-visible[b-dbmvgtuux1] {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hotel-name[b-dbmvgtuux1] {
    font-size: 0.8125rem;
}

.hotel-base[b-dbmvgtuux1] {
    font-size: 0.75rem;
    font-weight: 400;
    color: #6b7280;
    margin-left: 0.5rem;
}

/* Heatmap Cells */
.heatmap-cell[b-dbmvgtuux1] {
    padding: 0.5rem 0.25rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease, box-shadow 0.15s ease;
    width: 58px;
    min-width: 58px;
    max-width: 58px;
}

/* First metric cell in each row - no left border gap */
.heatmap-cell:first-of-type[b-dbmvgtuux1] {
    border-left: none;
}

.heatmap-cell.clickable[b-dbmvgtuux1] {
    cursor: pointer;
}

.heatmap-cell.clickable:hover[b-dbmvgtuux1] {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
}

/* Alternating row tones using subtle overlays that preserve heatmap colors */
.heatmap-table tbody tr:nth-child(even) td[b-dbmvgtuux1] {
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.02);
}

/* Row hover highlight overlay */
.heatmap-table tbody tr:hover td[b-dbmvgtuux1] {
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.04);
}

/* Emphasis styling for clear outliers */
.heatmap-cell-emphasis[b-dbmvgtuux1] {
    font-weight: 800;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}

/* Column group separation for Staff / Room / Restaurants */
.heatmap-table tbody tr td:nth-child(2)[b-dbmvgtuux1],
.heatmap-table tbody tr td:nth-child(6)[b-dbmvgtuux1],
.heatmap-table tbody tr td:nth-child(10)[b-dbmvgtuux1] {
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

/* Row hover – reinforce current country name */
.heatmap-table tbody tr:hover .country-name[b-dbmvgtuux1] {
    font-weight: 800;
}

.country-row .heatmap-cell[b-dbmvgtuux1] {
    cursor: pointer;
    font-weight: 700;
}

.country-row .heatmap-cell:hover[b-dbmvgtuux1] {
    filter: brightness(1.1);
}

/* Footer */
.heatmap-footer[b-dbmvgtuux1] {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.base-info[b-dbmvgtuux1] {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Alert Styles */
.alert[b-dbmvgtuux1] {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.alert-info[b-dbmvgtuux1] {
    background: #e0f2fe;
    border: 1px solid #7dd3fc;
    color: #0369a1;
}

.alert-warning[b-dbmvgtuux1] {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .heatmap-table[b-dbmvgtuux1] {
        font-size: 0.8125rem;
    }

    .heatmap-cell[b-dbmvgtuux1] {
        padding: 0.5rem 0.125rem;
    }

    .header-metric-row th[b-dbmvgtuux1] {
        font-size: 0.6875rem;
    }
}

@media (max-width: 768px) {
    .heatmap-controls[b-dbmvgtuux1] {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
        justify-content: flex-start;
    }

    .buttons-group[b-dbmvgtuux1] {
        flex-direction: row !important;
        order: 1;
    }

    .heatmap-legend[b-dbmvgtuux1] {
        order: 2;
    }

    .outlier-legend[b-dbmvgtuux1] {
        order: 3;
    }

    .hotel-header[b-dbmvgtuux1] {
        min-width: 200px;
    }

    .hotel-cell[b-dbmvgtuux1] {
        padding-left: 1.5rem;
    }

    .gradient-bar[b-dbmvgtuux1],
    .outlier-slider[b-dbmvgtuux1] {
        width: 60px;
    }
}
/* /Pages/Help.razor.rz.scp.css */
.help-container[b-2obq4pwygs] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.help-content[b-2obq4pwygs] {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.help-section[b-2obq4pwygs] {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.2s ease;
}

.help-section:hover[b-2obq4pwygs] {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.help-section h2[b-2obq4pwygs] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #f3f4f6;
}

.help-section h2 i[b-2obq4pwygs] {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(166, 138, 58, 0.1) 0%, rgba(166, 138, 58, 0.05) 100%);
    border-radius: 10px;
}

.help-card[b-2obq4pwygs] {
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 1px solid #e5e7eb;
}

.help-card h3[b-2obq4pwygs] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
}

.help-card h3:first-child[b-2obq4pwygs] {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.help-card h4[b-2obq4pwygs] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-card h4[b-2obq4pwygs]::before {
    content: '';
    width: 4px;
    height: 1.125rem;
    background: var(--primary-color);
    border-radius: 2px;
}

.help-card p[b-2obq4pwygs] {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.help-card ul[b-2obq4pwygs] {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.help-card li[b-2obq4pwygs] {
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.7;
    color: #4b5563;
    font-size: 0.9375rem;
}

.help-card li[b-2obq4pwygs]::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.help-card li strong[b-2obq4pwygs] {
    color: var(--text-dark);
    font-weight: 600;
}

.text-link[b-2obq4pwygs] {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.text-link:hover[b-2obq4pwygs] {
    color: #667eea;
    text-decoration: underline;
}

.contact-info-grid[b-2obq4pwygs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.contact-info-item[b-2obq4pwygs] {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.contact-info-item:hover[b-2obq4pwygs] {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(166, 138, 58, 0.1);
}

.contact-icon[b-2obq4pwygs] {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(166, 138, 58, 0.2);
}

.contact-details[b-2obq4pwygs] {
    flex: 1;
}

.contact-details h3[b-2obq4pwygs] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p[b-2obq4pwygs] {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.response-time-calculation[b-2obq4pwygs] {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(166, 138, 58, 0.1) 0%, rgba(166, 138, 58, 0.05) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.response-time-calculation strong[b-2obq4pwygs] {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expected-time[b-2obq4pwygs] {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    display: block;
}

/* Dashboard cards grid */
.dashboard-grid[b-2obq4pwygs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dashboard-card[b-2obq4pwygs] {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.dashboard-card:hover[b-2obq4pwygs] {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(166, 138, 58, 0.1);
}

.dashboard-card h3[b-2obq4pwygs] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    margin-top: 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
}

.dashboard-card p[b-2obq4pwygs] {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .help-container[b-2obq4pwygs] {
        padding: 1.5rem 1rem;
    }

    .help-section[b-2obq4pwygs] {
        padding: 1.5rem;
    }

    .help-section h2[b-2obq4pwygs] {
        font-size: 1.5rem;
    }

    .contact-info-grid[b-2obq4pwygs] {
        grid-template-columns: 1fr;
    }

    .dashboard-grid[b-2obq4pwygs] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Integrations.razor.rz.scp.css */
/* =============================================
   Integrations Page – Scoped Styles
   Follows existing design system conventions
   (--primary-color, --text-dark, --text-light)
   ============================================= */

/* ---- Hero Panel ---- */

.integrations-hero-panel .panel-body[b-018a9joy0o] {
    padding: 2rem;
}

.hero-content[b-018a9joy0o] {
    max-width: 820px;
}

.hero-headline[b-018a9joy0o] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-lead[b-018a9joy0o] {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.hero-body[b-018a9joy0o] {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-closing[b-018a9joy0o] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.7;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(166, 138, 58, 0.08) 0%, rgba(166, 138, 58, 0.03) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
}

/* ---- Capability Tags ---- */

.capability-tags[b-018a9joy0o] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 1.25rem 0;
}

.capability-tag[b-018a9joy0o] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: pointer;
}

.capability-tag i[b-018a9joy0o] {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.capability-tag:hover[b-018a9joy0o] {
    border-color: var(--primary-color);
    background: rgba(166, 138, 58, 0.06);
}

.capability-tag.active[b-018a9joy0o] {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #ffffff;
}

.capability-tag.active i[b-018a9joy0o] {
    color: #ffffff;
}

/* ---- Capability Info Panel ---- */

.capability-info-panel[b-018a9joy0o] {
    margin-top: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(166, 138, 58, 0.06) 0%, rgba(166, 138, 58, 0.02) 100%);
    border: 1px solid rgba(166, 138, 58, 0.2);
    border-radius: 10px;
    animation: capInfoSlide-b-018a9joy0o 0.2s ease-out;
}

@keyframes capInfoSlide-b-018a9joy0o {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.capability-info-header[b-018a9joy0o] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.capability-info-header i[b-018a9joy0o] {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.capability-info-close[b-018a9joy0o] {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 0.25rem;
    font-size: 0.75rem;
    line-height: 1;
    border-radius: 4px;
    transition: color 0.15s ease;
}

.capability-info-close:hover[b-018a9joy0o] {
    color: var(--text-dark);
}

.capability-info-panel p[b-018a9joy0o] {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ---- Integration Cards Grid ---- */

.integrations-grid[b-018a9joy0o] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.integration-card[b-018a9joy0o] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.integration-card:hover[b-018a9joy0o] {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(166, 138, 58, 0.12);
    transform: translateY(-2px);
}

.integration-logo[b-018a9joy0o] {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.logo-svg[b-018a9joy0o] {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.integration-info h4[b-018a9joy0o] {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.integration-subtitle[b-018a9joy0o] {
    display: block;
    font-size: 0.8125rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.integration-info p[b-018a9joy0o] {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* ---- Other Formats Note ---- */

.other-formats-note[b-018a9joy0o] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.other-formats-note > i[b-018a9joy0o] {
    color: var(--primary-color);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ---- Security Panel ---- */

.security-panel[b-018a9joy0o] {
    border-left: 4px solid #0d9488;
}

.security-grid[b-018a9joy0o] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.security-item[b-018a9joy0o] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.security-item:hover[b-018a9joy0o] {
    border-color: #0d9488;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.08);
}

.security-icon[b-018a9joy0o] {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.security-detail h4[b-018a9joy0o] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.4rem 0;
}

.security-detail p[b-018a9joy0o] {
    font-size: 0.8375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ---- Process Steps (How It Works) ---- */

.process-steps[b-018a9joy0o] {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.process-step[b-018a9joy0o] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 0.75rem;
}

.step-number[b-018a9joy0o] {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a94a 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(166, 138, 58, 0.25);
}

.step-connector[b-018a9joy0o] {
    width: 1px;
    display: none;
}

/* Horizontal connector line between steps on desktop */
.process-steps[b-018a9joy0o]::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #e5e7eb 50%, var(--primary-color) 100%);
    z-index: 0;
}

.step-content h4[b-018a9joy0o] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.step-content p[b-018a9joy0o] {
    font-size: 0.8375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ---- Process CTA ---- */

.process-cta[b-018a9joy0o] {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(166, 138, 58, 0.08) 0%, rgba(166, 138, 58, 0.03) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.process-cta p[b-018a9joy0o] {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    align-items: center;
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
    .integrations-grid[b-018a9joy0o] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .integrations-grid[b-018a9joy0o] {
        grid-template-columns: 1fr;
    }

    .hero-headline[b-018a9joy0o] {
        font-size: 1.5rem;
    }

    .integrations-hero-panel .panel-body[b-018a9joy0o] {
        padding: 1.25rem;
    }

    /* Vertical stepper on mobile */
    .process-steps[b-018a9joy0o] {
        flex-direction: column;
        gap: 0;
    }

    .process-steps[b-018a9joy0o]::before {
        display: none;
    }

    .process-step[b-018a9joy0o] {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 0;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .step-number[b-018a9joy0o] {
        margin-bottom: 0;
        min-width: 2.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .step-connector[b-018a9joy0o] {
        display: block;
        width: 2px;
        height: 1.5rem;
        background: var(--primary-color);
        margin-left: 1.25rem;
        opacity: 0.3;
    }

    .security-grid[b-018a9joy0o] {
        grid-template-columns: 1fr;
    }

    .hero-closing[b-018a9joy0o] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .capability-tag[b-018a9joy0o] {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}
/* /Pages/JnlrDemo.razor.rz.scp.css */
/* JNLR Demo Dashboard — scoped styles */

.jnlr-dashboard[b-z0vrs7mc37] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem 2rem;
}

/* Page Header */
.jnlr-page-header[b-z0vrs7mc37] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.jnlr-page-header h1[b-z0vrs7mc37] {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark, #333);
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.jnlr-page-header h1 i[b-z0vrs7mc37] {
    color: var(--primary-color, #a68a3a);
}

.jnlr-strapline[b-z0vrs7mc37] {
    font-size: 0.875rem;
    color: var(--text-light, #666);
    margin: 0;
    font-style: italic;
}

.jnlr-export-btn[b-z0vrs7mc37] {
    background: var(--secondary-color, #2c3e50);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Filter Bar */
.jnlr-filter-bar[b-z0vrs7mc37] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #E8E5E0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.25rem;
    align-items: flex-end;
}

.jnlr-filter-group[b-z0vrs7mc37] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 180px;
}

.jnlr-filter-group label[b-z0vrs7mc37] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light, #666);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.jnlr-filter-group label i[b-z0vrs7mc37] {
    color: var(--primary-color, #a68a3a);
    font-size: 0.6875rem;
}

.jnlr-filter-group .form-control[b-z0vrs7mc37] {
    padding: 0.4rem 0.625rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.8125rem;
    transition: border-color 0.15s ease;
}

.jnlr-filter-group .form-control:focus[b-z0vrs7mc37] {
    outline: none;
    border-color: var(--primary-color, #a68a3a);
    box-shadow: 0 0 0 3px rgba(166, 138, 58, 0.1);
}

/* KPI Row */
.jnlr-kpi-row[b-z0vrs7mc37] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.jnlr-kpi[b-z0vrs7mc37] {
    background: white;
    border: 1px solid #E8E5E0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.jnlr-kpi .kpi-label[b-z0vrs7mc37] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light, #666);
    margin-bottom: 0.375rem;
}

.jnlr-kpi .kpi-value[b-z0vrs7mc37] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color, #2c3e50);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.jnlr-kpi .kpi-sublabel[b-z0vrs7mc37] {
    font-size: 0.6875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.jnlr-kpi .kpi-trend[b-z0vrs7mc37] {
    font-size: 0.8125rem;
    font-weight: 600;
}

.jnlr-kpi .kpi-trend.positive[b-z0vrs7mc37] {
    color: #16a34a;
}

.jnlr-kpi .kpi-trend.negative[b-z0vrs7mc37] {
    color: #dc2626;
}

/* Split KPI (National/Local share) */
.jnlr-split-value[b-z0vrs7mc37] {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
}

.national-share[b-z0vrs7mc37] {
    color: #1a5276;
}

.share-divider[b-z0vrs7mc37] {
    color: #d1d5db;
    font-weight: 400;
}

.local-share[b-z0vrs7mc37] {
    color: #2F9E8B;
}

.kpi-share-bar[b-z0vrs7mc37] {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.share-fill-national[b-z0vrs7mc37] {
    background: #1a5276;
    transition: width 0.3s ease;
}

.share-fill-local[b-z0vrs7mc37] {
    background: #2F9E8B;
    transition: width 0.3s ease;
}

/* Hero badge */
.jnlr-hero-badge[b-z0vrs7mc37] {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Station Performance Table */
.jnlr-station-table[b-z0vrs7mc37] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.jnlr-station-table thead[b-z0vrs7mc37] {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.jnlr-station-table th[b-z0vrs7mc37] {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-dark, #333);
    white-space: nowrap;
    user-select: none;
}

.jnlr-station-table th i[b-z0vrs7mc37] {
    font-size: 0.625rem;
    color: #9ca3af;
    margin-left: 0.25rem;
}

.jnlr-station-table td[b-z0vrs7mc37] {
    padding: 0.625rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: var(--text-dark, #333);
}

.jnlr-station-table tbody tr:hover[b-z0vrs7mc37] {
    background: #f9fafb;
}

.jnlr-station-table .text-right[b-z0vrs7mc37] {
    text-align: right;
}

.jnlr-positive[b-z0vrs7mc37] {
    color: #16a34a;
    font-weight: 600;
}

.jnlr-negative[b-z0vrs7mc37] {
    color: #dc2626;
    font-weight: 600;
}

/* Under Review Section */
.jnlr-review-section[b-z0vrs7mc37] {
    margin-bottom: 1.25rem;
}

.jnlr-review-header[b-z0vrs7mc37] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.jnlr-review-btn[b-z0vrs7mc37] {
    background: var(--secondary-color, #2c3e50);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.jnlr-review-btn:hover[b-z0vrs7mc37] {
    background: var(--secondary-color-hover, #1a2a38);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.jnlr-review-count[b-z0vrs7mc37] {
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.125rem 0.4375rem;
    border-radius: 10px;
    line-height: 1.3;
    margin-left: 0.125rem;
}

.jnlr-review-body[b-z0vrs7mc37] {
    border: 1px solid #E8E5E0;
    border-radius: 12px;
    padding: 1rem;
    background: #fafaf8;
}

/* Footer */
.jnlr-footer-note[b-z0vrs7mc37] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light, #666);
}

/* Help icon (inline in panel headers and KPI tiles) */
.jnlr-help-icon[b-z0vrs7mc37] {
    all: unset;
    color: #c4c8ce;
    cursor: pointer;
    margin-left: 0.375rem;
    font-size: 0.75em;
    vertical-align: middle;
    line-height: 1;
    display: inline;
    transition: color 0.15s ease;
}

.jnlr-help-icon:hover[b-z0vrs7mc37] {
    color: var(--primary-color, #a68a3a);
}

.jnlr-help-icon:focus[b-z0vrs7mc37],
.jnlr-help-icon:focus-visible[b-z0vrs7mc37] {
    outline: none;
    box-shadow: none;
}

.jnlr-help-icon--kpi[b-z0vrs7mc37] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.875rem;
    margin-left: 0;
}

.jnlr-kpi[b-z0vrs7mc37] {
    position: relative;
}

/* Help Modal Overlay */
.jnlr-help-overlay[b-z0vrs7mc37] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: jnlrFadeIn-b-z0vrs7mc37 0.15s ease;
}

.jnlr-help-modal[b-z0vrs7mc37] {
    background: white;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: jnlrSlideUp-b-z0vrs7mc37 0.2s ease;
}

.jnlr-help-modal-header[b-z0vrs7mc37] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.jnlr-help-modal-header h4[b-z0vrs7mc37] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color, #2c3e50);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jnlr-help-modal-header h4 i[b-z0vrs7mc37] {
    color: var(--primary-color, #a68a3a);
    font-size: 1.1rem;
}

.jnlr-help-close[b-z0vrs7mc37] {
    all: unset;
    color: #9ca3af;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease, background 0.15s ease;
}

.jnlr-help-close:hover[b-z0vrs7mc37] {
    color: #374151;
    background: #f3f4f6;
}

.jnlr-help-close:focus[b-z0vrs7mc37],
.jnlr-help-close:focus-visible[b-z0vrs7mc37] {
    outline: none;
    box-shadow: none;
}

.jnlr-help-modal-body[b-z0vrs7mc37] {
    padding: 1.25rem 1.5rem 1.5rem;
}

.jnlr-help-desc[b-z0vrs7mc37] {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #374151;
    margin: 0 0 1.25rem 0;
}

.jnlr-help-detail[b-z0vrs7mc37] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.jnlr-help-detail-item[b-z0vrs7mc37] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    font-size: 0.835rem;
    line-height: 1.55;
    color: #4b5563;
}

.jnlr-help-detail-item.jnlr-help-caution[b-z0vrs7mc37] {
    background: #fffbeb;
    border-color: #fef3c7;
}

.jnlr-help-detail-label[b-z0vrs7mc37] {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.jnlr-help-caution .jnlr-help-detail-label[b-z0vrs7mc37] {
    color: #92400e;
}

.jnlr-help-caution .jnlr-help-detail-label i[b-z0vrs7mc37] {
    color: #d97706;
}

@keyframes jnlrFadeIn-b-z0vrs7mc37 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes jnlrSlideUp-b-z0vrs7mc37 {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Station type legend (inline in panel headers) */
.jnlr-type-legend[b-z0vrs7mc37] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light, #666);
}

.jnlr-legend-item[b-z0vrs7mc37] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.jnlr-legend-dot[b-z0vrs7mc37] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Spacing between chart grid rows */
.jnlr-dashboard .chart-panels-grid[b-z0vrs7mc37] {
    margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .jnlr-kpi-row[b-z0vrs7mc37] {
        grid-template-columns: repeat(2, 1fr);
    }

    .jnlr-filter-bar[b-z0vrs7mc37] {
        flex-direction: column;
    }

    .jnlr-filter-group[b-z0vrs7mc37] {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .jnlr-kpi-row[b-z0vrs7mc37] {
        grid-template-columns: 1fr;
    }

    .jnlr-page-header[b-z0vrs7mc37] {
        flex-direction: column;
    }

    .jnlr-footer-note[b-z0vrs7mc37] {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}
/* /Pages/Profile.razor.rz.scp.css */
/* Profile uses dashboard-container from app.css for full-width layout; title is in the top bar */
.profile-content[b-gsr4fr31e3] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Profile tabs – clean, modern tab styling */
.profile-tabs[b-gsr4fr31e3] {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
}

.profile-tab[b-gsr4fr31e3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
    font-family: inherit;
    position: relative;
    white-space: nowrap;
}

.profile-tab:hover[b-gsr4fr31e3] {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.02);
}

.profile-tab.active[b-gsr4fr31e3] {
    color: var(--secondary-color);
    font-weight: 600;
    border-bottom-color: var(--secondary-color);
    background: transparent;
}

.profile-tab.active:hover[b-gsr4fr31e3] {
    background: transparent;
}

.profile-tab i[b-gsr4fr31e3] {
    font-size: 0.9375rem;
    opacity: 0.8;
}

.profile-tab.active i[b-gsr4fr31e3] {
    opacity: 1;
}

.profile-tab-badge[b-gsr4fr31e3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.4rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: white;
    background: var(--secondary-color);
    border-radius: 10px;
    margin-left: 0.25rem;
    line-height: 1;
}

.profile-tab-panel[b-gsr4fr31e3] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card[b-gsr4fr31e3] {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
}

.profile-avatar[b-gsr4fr31e3] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--panel-header-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.profile-info[b-gsr4fr31e3] {
    flex: 1;
    min-width: 0;
}

.profile-info.profile-info-top[b-gsr4fr31e3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-display-name[b-gsr4fr31e3] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.profile-info h2[b-gsr4fr31e3] {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.profile-email[b-gsr4fr31e3] {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.profile-details-grid[b-gsr4fr31e3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem 2rem;
    margin-top: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.profile-detail-item[b-gsr4fr31e3] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.profile-detail-label[b-gsr4fr31e3] {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.profile-detail-value[b-gsr4fr31e3] {
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
}

.profile-section[b-gsr4fr31e3] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.profile-section h3[b-gsr4fr31e3] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-section h3 i[b-gsr4fr31e3] {
    color: var(--primary-color);
}

.profile-description[b-gsr4fr31e3] {
    color: var(--text-light);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.profile-actions[b-gsr4fr31e3] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-action-btn[b-gsr4fr31e3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

button.profile-action-btn[b-gsr4fr31e3] {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9375rem;
}

.profile-action-btn:hover[b-gsr4fr31e3] {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.profile-action-btn i[b-gsr4fr31e3] {
    font-size: 1rem;
}

.info-grid[b-gsr4fr31e3] {
    display: grid;
    gap: 1rem;
}

.info-item[b-gsr4fr31e3] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item label[b-gsr4fr31e3] {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span[b-gsr4fr31e3] {
    color: var(--text-light);
    font-size: 1rem;
}

.alert[b-gsr4fr31e3] {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.alert-warning[b-gsr4fr31e3] {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.alert-warning a[b-gsr4fr31e3] {
    color: #856404;
    text-decoration: underline;
}

/* Button Styles */
.btn[b-gsr4fr31e3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.9375rem;
}

.btn-primary[b-gsr4fr31e3] {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-gsr4fr31e3] {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(166, 138, 58, 0.3);
}

.btn:disabled[b-gsr4fr31e3] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Chart Palette Selection */
.palette-grid[b-gsr4fr31e3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.palette-card[b-gsr4fr31e3] {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: white;
}

.palette-card:hover[b-gsr4fr31e3] {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.palette-card.selected[b-gsr4fr31e3] {
    border-color: var(--primary-color);
    background: #fef9e7;
    box-shadow: 0 4px 12px rgba(166, 138, 58, 0.2);
}

.palette-preview[b-gsr4fr31e3] {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.palette-color[b-gsr4fr31e3] {
    flex: 1;
    height: 100%;
}

.palette-info h4[b-gsr4fr31e3] {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.palette-info p[b-gsr4fr31e3] {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.palette-check[b-gsr4fr31e3] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.save-success-message[b-gsr4fr31e3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 500;
    margin-left: 1rem;
}

.save-success-message i[b-gsr4fr31e3] {
    font-size: 1rem;
}

/* Inbox (simplified email-style list) */
.inbox-section[b-gsr4fr31e3] {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.inbox-header[b-gsr4fr31e3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.inbox-header h3[b-gsr4fr31e3] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inbox-header h3 i[b-gsr4fr31e3] {
    color: var(--primary-color);
}

.inbox-mark-all[b-gsr4fr31e3] {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
}

.inbox-mark-all:hover[b-gsr4fr31e3] {
    text-decoration: underline;
}

.inbox-list[b-gsr4fr31e3] {
    display: flex;
    flex-direction: column;
}

.inbox-item[b-gsr4fr31e3] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.15s ease;
}

.inbox-item:hover[b-gsr4fr31e3] {
    background: #f9fafb;
}

.inbox-item:last-child[b-gsr4fr31e3] {
    border-bottom: none;
}

.inbox-item.unread .inbox-subject[b-gsr4fr31e3] {
    font-weight: 600;
    color: var(--text-dark);
}

.inbox-unread-dot[b-gsr4fr31e3] {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.inbox-dot-placeholder[b-gsr4fr31e3] {
    background: transparent;
}

.inbox-item-main[b-gsr4fr31e3] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.inbox-subject[b-gsr4fr31e3] {
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.inbox-sender[b-gsr4fr31e3] {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.inbox-date[b-gsr4fr31e3] {
    flex-shrink: 0;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.inbox-empty[b-gsr4fr31e3] {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Form group spacing (used in both Profile and Notifications tabs) */
.profile-content .form-group[b-gsr4fr31e3] {
    margin-bottom: 1.25rem;
}

.profile-content .form-group .text-muted[b-gsr4fr31e3] {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Notification preferences */
.notification-toggle[b-gsr4fr31e3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.notification-toggle input[type="checkbox"][b-gsr4fr31e3] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* /Pages/Reports.razor.rz.scp.css */
/* Reports page - aligned with Collaborate/Content pages (Exports, Sharing, Help) */

.reports-intro[b-tbin3x10vj] {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reports-grid[b-tbin3x10vj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Card style: informational only, not a link */
.report-card[b-tbin3x10vj] {
    background: var(--bg-light, #f8f9fa);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color, #e5e7eb);
    text-align: left;
    transition: box-shadow 0.2s ease;
}

.report-card-coming-soon[b-tbin3x10vj] {
    cursor: default;
}

.report-card .card-icon[b-tbin3x10vj] {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.report-card h4[b-tbin3x10vj] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.report-card p[b-tbin3x10vj] {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.report-badge[b-tbin3x10vj] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    background: #e5e7eb;
    border-radius: 6px;
}

/* Your Reports list */
.reports-list[b-tbin3x10vj] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-item[b-tbin3x10vj] {
    background: var(--bg-light, #f9fafb);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid var(--border-color, #e5e7eb);
    transition: box-shadow 0.2s ease;
}

.report-item:hover[b-tbin3x10vj] {
    box-shadow: var(--shadow);
}

.report-item-icon[b-tbin3x10vj] {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.report-item-details[b-tbin3x10vj] {
    flex: 1;
    min-width: 0;
}

.report-item-details h4[b-tbin3x10vj] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.report-meta[b-tbin3x10vj] {
    font-size: 0.8125rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
}

.report-meta i[b-tbin3x10vj] {
    font-size: 0.75rem;
}

.report-separator[b-tbin3x10vj] {
    color: #d1d5db;
}

.report-item-actions[b-tbin3x10vj] {
    flex-shrink: 0;
}

/* Empty state */
.empty-reports[b-tbin3x10vj] {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.empty-reports-icon[b-tbin3x10vj] {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-reports h4[b-tbin3x10vj] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.empty-reports p[b-tbin3x10vj] {
    color: var(--text-light);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .reports-grid[b-tbin3x10vj] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .report-card[b-tbin3x10vj] {
        padding: 1.25rem;
    }

    .report-item[b-tbin3x10vj] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .report-item-actions[b-tbin3x10vj] {
        width: 100%;
    }

    .report-item-actions .btn[b-tbin3x10vj] {
        width: 100%;
    }
}
/* /Pages/TermsAndConditions.razor.rz.scp.css */
.terms-container[b-h3jdqnxbus] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.terms-header[b-h3jdqnxbus] {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #f3f4f6;
}

.terms-header h1[b-h3jdqnxbus] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.terms-header h1 i[b-h3jdqnxbus] {
    color: var(--primary-color);
    font-size: 2rem;
}

.terms-subtitle[b-h3jdqnxbus] {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

.terms-content[b-h3jdqnxbus] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.terms-section[b-h3jdqnxbus] {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.terms-section:hover[b-h3jdqnxbus] {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-color: #e5e7eb;
}

.terms-section-header[b-h3jdqnxbus] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.terms-number[b-h3jdqnxbus] {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(166, 138, 58, 0.2);
}

.terms-section-header h2[b-h3jdqnxbus] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.terms-section-content[b-h3jdqnxbus] {
    padding-left: calc(3rem + 1.25rem);
}

.terms-section-content p[b-h3jdqnxbus] {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.terms-section-content p:last-child[b-h3jdqnxbus] {
    margin-bottom: 0;
}

.terms-section-content strong[b-h3jdqnxbus] {
    color: var(--text-dark);
    font-weight: 600;
}

.terms-list[b-h3jdqnxbus] {
    margin: 1.25rem 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.terms-list li[b-h3jdqnxbus] {
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.7;
    color: #4b5563;
    font-size: 0.9375rem;
}

.terms-list li[b-h3jdqnxbus]::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
}

.terms-footer[b-h3jdqnxbus] {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid #f3f4f6;
    text-align: center;
}

.terms-footer p[b-h3jdqnxbus] {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.terms-footer i[b-h3jdqnxbus] {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-container[b-h3jdqnxbus] {
        padding: 1.5rem 1rem;
    }

    .terms-header h1[b-h3jdqnxbus] {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .terms-section[b-h3jdqnxbus] {
        padding: 1.5rem;
    }

    .terms-section-header[b-h3jdqnxbus] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .terms-section-content[b-h3jdqnxbus] {
        padding-left: 0;
    }

    .terms-number[b-h3jdqnxbus] {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .terms-section-header h2[b-h3jdqnxbus] {
        font-size: 1.25rem;
    }
}
/* /Pages/UsageAnalysis.razor.rz.scp.css */
.page-link[b-l55s034drd] {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.page-link:hover[b-l55s034drd] {
    color: #8b6f2e !important;
    text-decoration: underline !important;
}

.page-link:hover span[b-l55s034drd] {
    text-decoration: underline !important;
}

.page-link:visited[b-l55s034drd] {
    color: var(--primary-color) !important;
}

.page-link:active[b-l55s034drd] {
    color: #6d5629 !important;
}
/* /Pages/VerbatimExplorer.razor.rz.scp.css */
.verbatim-container[b-le14e1dj70] {
    padding: 2rem;
}

.verbatim-header[b-le14e1dj70] {
    margin-bottom: 2rem;
}

.verbatim-header h1[b-le14e1dj70] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.verbatim-header h1 i[b-le14e1dj70] {
    color: var(--primary-color);
}

.verbatim-header p[b-le14e1dj70] {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.verbatim-toolbar[b-le14e1dj70] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-box[b-le14e1dj70] {
    flex: 1;
    min-width: 250px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i[b-le14e1dj70] {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    pointer-events: none;
}

.search-box .form-control[b-le14e1dj70] {
    padding-left: 2.5rem;
    width: 100%;
}

.form-control[b-le14e1dj70] {
    padding: 0.625rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

.form-control:focus[b-le14e1dj70] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.toolbar-info[b-le14e1dj70] {
    color: var(--text-light);
    font-size: 0.875rem;
    white-space: nowrap;
}

.verbatim-table-container[b-le14e1dj70] {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    overflow-x: auto;
}

.verbatim-table[b-le14e1dj70] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.verbatim-table thead[b-le14e1dj70] {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.verbatim-table th[b-le14e1dj70] {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    border-right: 1px solid #e5e7eb;
    user-select: none;
}

.verbatim-table th.sortable[b-le14e1dj70] {
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.verbatim-table th.sortable:hover[b-le14e1dj70] {
    background-color: #f3f4f6;
}

.verbatim-table th i[b-le14e1dj70] {
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

.verbatim-table td[b-le14e1dj70] {
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
    vertical-align: top;
}

.verbatim-table tbody tr:hover[b-le14e1dj70] {
    opacity: 0.9;
}

/* NPS Row Background Colors */
.verbatim-table tbody tr.nps-green[b-le14e1dj70] {
    background-color: #d1fae5;
}

.verbatim-table tbody tr.nps-green td[b-le14e1dj70] {
    color: #065f46;
}

.verbatim-table tbody tr.nps-yellow[b-le14e1dj70] {
    background-color: #fef3c7;
}

.verbatim-table tbody tr.nps-yellow td[b-le14e1dj70] {
    color: #92400e;
}

.verbatim-table tbody tr.nps-red[b-le14e1dj70] {
    background-color: #fee2e2;
}

.verbatim-table tbody tr.nps-red td[b-le14e1dj70] {
    color: #991b1b;
}

.verbatim-table tbody tr.nps-unknown[b-le14e1dj70] {
    background-color: #f3f4f6;
}

.verbatim-table tbody tr.nps-unknown td[b-le14e1dj70] {
    color: #6b7280;
}

.verbatim-table tbody tr.nps-green:hover[b-le14e1dj70] {
    background-color: #a7f3d0;
}

.verbatim-table tbody tr.nps-yellow:hover[b-le14e1dj70] {
    background-color: #fde68a;
}

.verbatim-table tbody tr.nps-red:hover[b-le14e1dj70] {
    background-color: #fecaca;
}

.verbatim-table tbody tr.nps-unknown:hover[b-le14e1dj70] {
    background-color: #e5e7eb;
}

.country-cell[b-le14e1dj70] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-name[b-le14e1dj70] {
    flex: 1;
}

.flag-icon[b-le14e1dj70] {
    display: inline-block;
    width: 24px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    vertical-align: middle;
}

.verbatim-cell[b-le14e1dj70] {
    max-width: 400px;
    word-wrap: break-word;
    line-height: 1.5;
}

.loading-cell[b-le14e1dj70],
.empty-cell[b-le14e1dj70] {
    text-align: center;
    padding: 3rem !important;
    color: var(--text-light);
}

.loading-cell i[b-le14e1dj70] {
    margin-right: 0.5rem;
}

.nps-badge[b-le14e1dj70] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
    min-width: 3rem;
    text-align: center;
}

.nps-promoter[b-le14e1dj70] {
    background: #d1fae5;
    color: #065f46;
}

.nps-passive[b-le14e1dj70] {
    background: #fef3c7;
    color: #92400e;
}

.nps-detractor[b-le14e1dj70] {
    background: #fee2e2;
    color: #991b1b;
}

.nps-unknown[b-le14e1dj70] {
    background: #e5e7eb;
    color: #6b7280;
}

.verbatim-pagination[b-le14e1dj70] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    gap: 1rem;
    flex-wrap: wrap;
}

.page-info[b-le14e1dj70] {
    color: var(--text-light);
    font-size: 0.875rem;
}

.btn[b-le14e1dj70] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:disabled[b-le14e1dj70] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-sm[b-le14e1dj70] {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

.btn-primary[b-le14e1dj70] {
    background: #667eea;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-le14e1dj70] {
    background: #764ba2;
}

.btn-secondary[b-le14e1dj70] {
    background: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover:not(:disabled)[b-le14e1dj70] {
    background: #d1d5db;
}

.page-size-select[b-le14e1dj70] {
    padding: 0.375rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.8125rem;
    background: white;
    cursor: pointer;
}

.page-size-select:focus[b-le14e1dj70] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

@media (max-width: 768px) {
    .verbatim-toolbar[b-le14e1dj70] {
        flex-direction: column;
        align-items: stretch;
    }

    .verbatim-pagination[b-le14e1dj70] {
        flex-direction: column;
        align-items: stretch;
    }

    .verbatim-table[b-le14e1dj70] {
        font-size: 0.75rem;
    }

    .verbatim-table th[b-le14e1dj70],
    .verbatim-table td[b-le14e1dj70] {
        padding: 0.75rem 0.5rem;
    }

    .verbatim-cell[b-le14e1dj70] {
        max-width: 200px;
    }
}

/* /Shared/Breadcrumb.razor.rz.scp.css */
/* Breadcrumb styles */
/* Target breadcrumb container and links - override inline styles */
div[style*="display: flex"][style*="align-items: center"][style*="gap: 0.5rem"][b-wkpmy8ydtr] {
    font-size: 0.75rem !important;
}

div[style*="display: flex"][style*="align-items: center"][style*="gap: 0.5rem"] nav a[b-wkpmy8ydtr],
div[style*="display: flex"][style*="align-items: center"][style*="gap: 0.5rem"] nav a span[b-wkpmy8ydtr],
div[style*="display: flex"][style*="align-items: center"][style*="gap: 0.5rem"] nav span[style*="color: #6b7280"][b-wkpmy8ydtr],
div[style*="display: flex"][style*="align-items: center"][style*="gap: 0.5rem"] nav span[style*="color: #6b7280"] span[b-wkpmy8ydtr] {
    color: #888 !important;
    font-size: 0.75rem !important;
}

div[style*="display: flex"][style*="align-items: center"][style*="gap: 0.5rem"] nav span[style*="color: #d1d5db"][b-wkpmy8ydtr] {
    color: #CCC !important;
}

.btn-action-link[b-wkpmy8ydtr] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #dfe1e6;
    border-radius: 8px;
    color: #42526e;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-action-link:hover[b-wkpmy8ydtr] {
    background: #f4f5f7;
    border-color: #c1c7d0;
    color: #172b4d;
}

.btn-action-link:active[b-wkpmy8ydtr] {
    background: #ebecf0;
}

/* Share link must look identical to Save View button - no blue, no underline anywhere */
a.btn-save-view[b-wkpmy8ydtr],
a.btn-save-view:link[b-wkpmy8ydtr],
a.btn-save-view:visited[b-wkpmy8ydtr],
a.btn-save-view:hover[b-wkpmy8ydtr],
a.btn-save-view:focus[b-wkpmy8ydtr],
a.btn-save-view:active[b-wkpmy8ydtr] {
    color: white !important;
    text-decoration: none !important;
    text-underline-offset: unset !important;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

a.btn-save-view:hover[b-wkpmy8ydtr] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(251, 191, 36, 0.4);
    color: white !important;
    text-decoration: none !important;
}

/* Share button: use new warmer muted green accent */
a.btn-share-link[b-wkpmy8ydtr],
a.btn-share-link:link[b-wkpmy8ydtr],
a.btn-share-link:visited[b-wkpmy8ydtr],
a.btn-share-link:hover[b-wkpmy8ydtr],
a.btn-share-link:focus[b-wkpmy8ydtr],
a.btn-share-link:active[b-wkpmy8ydtr] {
    color: white !important;
    text-decoration: none !important;
    text-underline-offset: unset !important;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease;
    background: #2F9E8B;
    border: none;
    box-shadow: 0 2px 4px rgba(47, 158, 139, 0.3);
}

a.btn-share-link:hover[b-wkpmy8ydtr] {
    background-color: #268876;
    color: white !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(47, 158, 139, 0.4);
}

.btn-save-view[b-wkpmy8ydtr] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #dfe1e6;
    border-radius: 8px;
    color: #42526e;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.btn-save-view:hover[b-wkpmy8ydtr] {
    background: #f4f5f7;
    border-color: #c1c7d0;
    color: #172b4d;
}

.btn-save-view:active[b-wkpmy8ydtr] {
    background: #ebecf0;
}

/* Filter badge styling - matching filter/tag pills from Prompt 5 */
.filter-badge[b-wkpmy8ydtr] {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    padding: 0.25rem 0.5rem !important;
    background-color: #F0EFED !important;
    border: 1px solid #E8E5E0 !important;
    border-radius: 8px !important;
    font-size: 0.8125rem !important;
    color: #555 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background-color 0.15s ease !important;
}

.filter-badge:hover[b-wkpmy8ydtr] {
    background-color: #E8E5E0 !important;
    border-color: #D4D1CC !important;
}

/* Save view modal styles */
.save-view-modal-overlay[b-wkpmy8ydtr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 66, 0.54);
    z-index: 1000;
}

.save-view-modal[b-wkpmy8ydtr] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(9, 30, 66, 0.25);
    z-index: 1001;
    width: 400px;
    max-width: 90vw;
}

.save-view-modal-header[b-wkpmy8ydtr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #ebecf0;
}

.save-view-modal-header h3[b-wkpmy8ydtr] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #172b4d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.save-view-modal-header h3 i[b-wkpmy8ydtr] {
    color: #ffab00;
}

.save-view-modal-body[b-wkpmy8ydtr] {
    padding: 1.25rem;
}

.save-view-modal-footer[b-wkpmy8ydtr] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid #ebecf0;
}

.save-view-preview[b-wkpmy8ydtr] {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f4f5f7;
    border-radius: 6px;
}

.preview-item[b-wkpmy8ydtr] {
    font-size: 0.8125rem;
    color: #5e6c84;
    margin-bottom: 0.375rem;
}

.preview-item:last-child[b-wkpmy8ydtr] {
    margin-bottom: 0;
}

.preview-item strong[b-wkpmy8ydtr] {
    color: #42526e;
}

/* Weighted Data note – small link to Help Centre in top right */
a.weighted-data-note[b-wkpmy8ydtr],
a.weighted-data-note:link[b-wkpmy8ydtr],
a.weighted-data-note:visited[b-wkpmy8ydtr] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #9ca3af;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

a.weighted-data-note:hover[b-wkpmy8ydtr],
a.weighted-data-note:focus[b-wkpmy8ydtr] {
    color: #d1d5db;
    text-decoration: none;
}
/* /Shared/DashboardTour.razor.rz.scp.css */
/* Dashboard tour overlay – CSS-based wizard */
.tour-overlay[b-ee329zi6d8] {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: auto;
}

.tour-spotlight[b-ee329zi6d8] {
    position: fixed;
    box-sizing: border-box;
    border: 3px solid rgba(251, 191, 36, 0.9);
    border-radius: 8px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.tour-card[b-ee329zi6d8] {
    position: fixed;
    min-width: 320px;
    max-width: 400px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 1.25rem 1.5rem;
    z-index: 10001;
    pointer-events: auto;
    transition: top 0.25s ease, left 0.25s ease;
}

.tour-card-header[b-ee329zi6d8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tour-card-title[b-ee329zi6d8] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #172b4d;
}

.tour-step-indicator[b-ee329zi6d8] {
    font-size: 0.75rem;
    color: #6b7280;
    white-space: nowrap;
}

.tour-card-description[b-ee329zi6d8] {
    margin: 0 0 1.25rem 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #42526e;
}

.tour-card-actions[b-ee329zi6d8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tour-card-nav[b-ee329zi6d8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-btn[b-ee329zi6d8] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.tour-btn-primary[b-ee329zi6d8] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.tour-btn-primary:hover[b-ee329zi6d8] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.tour-btn-secondary[b-ee329zi6d8] {
    background: #f4f5f7;
    color: #5e6c84;
}

.tour-btn-secondary:hover[b-ee329zi6d8] {
    background: #ebecf0;
    color: #172b4d;
}

/* Small screens: constrain card width */
@media (max-width: 480px) {
    .tour-card[b-ee329zi6d8] {
        min-width: 260px;
        max-width: calc(100vw - 32px);
        padding: 1rem 1.25rem;
    }

    .tour-card-title[b-ee329zi6d8] {
        font-size: 1rem;
    }

    .tour-card-description[b-ee329zi6d8] {
        font-size: 0.875rem;
    }

    .tour-btn[b-ee329zi6d8] {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }
}
/* /Shared/DemoAccessModal.razor.rz.scp.css */
.demo-modal-overlay[b-eluwzjf63f] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: demoFadeIn-b-eluwzjf63f 0.15s ease-out;
}

@keyframes demoFadeIn-b-eluwzjf63f {
    from { opacity: 0; }
    to { opacity: 1; }
}

.demo-modal[b-eluwzjf63f] {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: demoSlideUp-b-eluwzjf63f 0.2s ease-out;
}

@keyframes demoSlideUp-b-eluwzjf63f {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.demo-modal-icon[b-eluwzjf63f] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a94a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.demo-modal-title[b-eluwzjf63f] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark, #1f2937);
    margin: 0 0 0.75rem;
}

.demo-modal-message[b-eluwzjf63f] {
    font-size: 0.9375rem;
    color: var(--text-light, #6b7280);
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.demo-modal-contact[b-eluwzjf63f] {
    font-size: 0.875rem;
    color: var(--text-light, #6b7280);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.demo-modal-contact a[b-eluwzjf63f] {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.demo-modal-contact a:hover[b-eluwzjf63f] {
    text-decoration: underline;
}

.demo-modal-close-btn[b-eluwzjf63f] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c9a94a 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.demo-modal-close-btn:hover[b-eluwzjf63f] {
    opacity: 0.9;
}
/* /Shared/HelpModal.razor.rz.scp.css */
.modal-overlay[b-xgr1bz6bny] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn-b-xgr1bz6bny 0.2s ease;
}

@keyframes fadeIn-b-xgr1bz6bny {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container[b-xgr1bz6bny] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp-b-xgr1bz6bny 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp-b-xgr1bz6bny {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-xgr1bz6bny] {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--panel-header-bg);
    color: var(--text-white, white);
}

/* Minimal theme: dark text on light background */
body[data-ui-theme="minimal"] .modal-header[b-xgr1bz6bny] {
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

body[data-ui-theme="minimal"] .modal-header h2[b-xgr1bz6bny] {
    color: #374151;
}

.modal-header h2[b-xgr1bz6bny] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-close[b-xgr1bz6bny] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-white, white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.125rem;
}

.modal-close:hover[b-xgr1bz6bny] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Minimal theme: dark close button */
body[data-ui-theme="minimal"] .modal-close[b-xgr1bz6bny] {
    background: rgba(0, 0, 0, 0.1);
    color: #374151;
}

body[data-ui-theme="minimal"] .modal-close:hover[b-xgr1bz6bny] {
    background: rgba(0, 0, 0, 0.15);
}

.modal-body[b-xgr1bz6bny] {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.help-content h3[b-xgr1bz6bny] {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.help-content h4[b-xgr1bz6bny] {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.help-content p[b-xgr1bz6bny] {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.help-content ul[b-xgr1bz6bny] {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.help-content li[b-xgr1bz6bny] {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.help-content strong[b-xgr1bz6bny] {
    color: var(--text-dark);
    font-weight: 600;
}

.section-divider[b-xgr1bz6bny] {
    border: none;
    border-top: 1px solid var(--border-color, #e5e7eb);
    margin: 1.5rem 0;
}

.modal-footer[b-xgr1bz6bny] {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color, #e5e7eb);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: var(--bg-light, #f9fafb);
}

.btn[b-xgr1bz6bny] {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-secondary[b-xgr1bz6bny] {
    background: var(--border-color, #e5e7eb);
    color: var(--text-dark);
}

.btn-secondary:hover[b-xgr1bz6bny] {
    background: #d1d5db;
    color: var(--text-dark);
}

.btn-primary[b-xgr1bz6bny] {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover[b-xgr1bz6bny] {
    background: var(--primary-hover);
}
/* /Shared/HelpSlideIn.razor.rz.scp.css */
.slide-in-overlay[b-xn0g4lyemr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
    animation: fadeIn-b-xn0g4lyemr 0.2s ease;
}

@keyframes fadeIn-b-xn0g4lyemr {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in-panel[b-xn0g4lyemr] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 480px;
    max-width: 100%;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 1051;
    display: flex;
    flex-direction: column;
    animation: slideIn-b-xn0g4lyemr 0.3s ease;
}

@keyframes slideIn-b-xn0g4lyemr {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.slide-in-header[b-xn0g4lyemr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.slide-in-header h2[b-xn0g4lyemr] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slide-in-header h2 i[b-xn0g4lyemr] {
    color: #6366f1;
}

.slide-in-close[b-xn0g4lyemr] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: #6b7280;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slide-in-close:hover[b-xn0g4lyemr] {
    background: #e5e7eb;
    color: #1f2937;
}

.slide-in-close i[b-xn0g4lyemr] {
    font-size: 1.125rem;
}

.slide-in-body[b-xn0g4lyemr] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.help-content h3[b-xn0g4lyemr] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

.help-content h4[b-xn0g4lyemr] {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.help-content h4:first-of-type[b-xn0g4lyemr] {
    border-top: none;
    padding-top: 0;
}

.help-content p[b-xn0g4lyemr] {
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.help-content ul[b-xn0g4lyemr] {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.help-content li[b-xn0g4lyemr] {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.help-content strong[b-xn0g4lyemr] {
    color: #1f2937;
}

@media (max-width: 520px) {
    .slide-in-panel[b-xn0g4lyemr] {
        width: 100%;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-fj2gmcpixh] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-fj2gmcpixh] {
    flex: 1;
}

.sidebar[b-fj2gmcpixh] {
    background-image: none;
}

.top-row[b-fj2gmcpixh] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-fj2gmcpixh]  a, .top-row .btn-link[b-fj2gmcpixh] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-fj2gmcpixh] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-fj2gmcpixh] {
        display: none;
    }

    .top-row.auth[b-fj2gmcpixh] {
        justify-content: space-between;
    }

    .top-row a[b-fj2gmcpixh], .top-row .btn-link[b-fj2gmcpixh] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-fj2gmcpixh] {
        flex-direction: row;
    }

    .sidebar[b-fj2gmcpixh] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-fj2gmcpixh] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-fj2gmcpixh], article[b-fj2gmcpixh] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/MetadataModal.razor.rz.scp.css */
.metadata-modal-overlay[b-3lbf1662rm] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn-b-3lbf1662rm 0.2s ease;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

@keyframes fadeIn-b-3lbf1662rm {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.metadata-modal-container[b-3lbf1662rm] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 1400px;
    width: 90%;
    max-height: calc(90vh - 40px);
    display: flex;
    flex-direction: column;
    animation: slideUp-b-3lbf1662rm 0.3s ease;
    overflow: hidden;
    position: relative;
    margin: auto;
}

@keyframes slideUp-b-3lbf1662rm {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.metadata-modal-body[b-3lbf1662rm] {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

/* Modal header styling to match HelpModal */
.metadata-modal-container .modal-header[b-3lbf1662rm] {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--panel-header-bg, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
    color: white;
}

/* Minimal theme: dark text on light background */
body[data-ui-theme="minimal"] .metadata-modal-container .modal-header[b-3lbf1662rm] {
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

body[data-ui-theme="minimal"] .metadata-modal-container .modal-header h2[b-3lbf1662rm] {
    color: #374151;
}

.metadata-modal-container .modal-header h2[b-3lbf1662rm] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.metadata-modal-container .modal-close[b-3lbf1662rm] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.125rem;
}

.metadata-modal-container .modal-close:hover[b-3lbf1662rm] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Minimal theme: dark close button */
body[data-ui-theme="minimal"] .metadata-modal-container .modal-close[b-3lbf1662rm] {
    background: rgba(0, 0, 0, 0.1);
    color: #374151;
}

body[data-ui-theme="minimal"] .metadata-modal-container .modal-close:hover[b-3lbf1662rm] {
    background: rgba(0, 0, 0, 0.15);
}

.metadata-modal-container .modal-footer[b-3lbf1662rm] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background: #f9fafb;
}

.metadata-modal-container .modal-footer .btn[b-3lbf1662rm] {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.metadata-modal-container .modal-footer .btn-primary[b-3lbf1662rm] {
    background: #667eea;
    color: white;
}

.metadata-modal-container .modal-footer .btn-primary:hover[b-3lbf1662rm] {
    background: #764ba2;
}

.metadata-modal-container .modal-footer .btn-secondary[b-3lbf1662rm] {
    background: #e0e0e0;
    color: var(--text-dark);
}

.metadata-modal-container .modal-footer .btn-secondary:hover[b-3lbf1662rm] {
    background: #d0d0d0;
}

.metadata-container[b-3lbf1662rm] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metadata-card[b-3lbf1662rm] {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    transition: box-shadow 0.2s ease;
}

.metadata-card:hover[b-3lbf1662rm] {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.metadata-header[b-3lbf1662rm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.measure-id[b-3lbf1662rm] {
    font-weight: 600;
    color: #111827;
    font-size: 1.1rem;
}

.question-id[b-3lbf1662rm] {
    font-weight: 500;
}

.responses-table[b-3lbf1662rm] {
    margin-top: 1rem;
    overflow-x: auto;
}

.responses-table table[b-3lbf1662rm] {
    width: 100%;
    border-collapse: collapse;
}

.responses-table th[b-3lbf1662rm] {
    background-color: #f3f4f6;
    font-weight: 600;
    text-align: left;
    padding: 0.4rem 0.75rem;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
}

.responses-table td[b-3lbf1662rm] {
    padding: 0.4rem 0.75rem;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
}

.responses-table tr:nth-child(even)[b-3lbf1662rm] {
    background-color: #f9fafb;
}

.responses-table tr:hover[b-3lbf1662rm] {
    background-color: #f3f4f6;
}

/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-650awk2r4i] {
    background-color: rgba(0, 0, 0, 0.05);
}

.top-row[b-650awk2r4i] {
    height: 3.5rem;
    background-color: #F7F7F5;
    border-bottom: 1px solid #E8E5E0;
}

.navbar-brand[b-650awk2r4i] {
    font-size: 1.1rem;
}

.oi[b-650awk2r4i] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-650awk2r4i] {
    font-size: 0.8125rem;
    padding-bottom: 0;
}

    .nav-item:first-of-type[b-650awk2r4i] {
        padding-top: 0;
    }

    .nav-item:last-of-type[b-650awk2r4i] {
        padding-bottom: 0;
    }

    .nav-item[b-650awk2r4i]  a {
        color: #37352F;
        border-radius: 6px;
        height: auto;
        display: flex;
        align-items: center;
        line-height: 1.3;
    }

.nav-item[b-650awk2r4i]  a.active {
    background-color: #EFEFED;
    color: #37352F;
    font-weight: 500;
}

.nav-item[b-650awk2r4i]  a:hover {
    background-color: #EFEFED;
    color: #37352F;
}

@media (min-width: 641px) {
    .navbar-toggler[b-650awk2r4i] {
        display: none;
    }

    .collapse[b-650awk2r4i] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-650awk2r4i] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Shared/TopBarActions.razor.rz.scp.css */
/* Scoped CSS for TopBarActions - minimal overrides */
/* Main styles are in app.css for better compatibility */
