/* _content/Application/CallDetailRecord/Components/CdrComparisonResults.razor.rz.scp.css */
/* ============================================
   CDR Comparison Results Component Styles - Component Scoped
   ============================================ */

.json-view[b-mmw157spx3] {
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 12px;
}

.diff-row-mismatch[b-mmw157spx3] {
    background-color: rgba(255, 152, 0, 0.1);
}

.truncate-cell[b-mmw157spx3] {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* _content/Application/CallDetailRecord/Components/CdrDetails.razor.rz.scp.css */
/* ============================================
   CDR Details Component Styles - Component Scoped
   ============================================ */

.raw-payload-box[b-mmreh7ip99] {
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 4px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 12px;
    margin: 0;
    flex: 1; /* Allow it to grow within wrapper */
    min-height: 0; /* Prevent overflow */
}

#cdr-top-panel[b-mmreh7ip99]{
    height: 100%;
}

.cdr-details-container[b-mmreh7ip99] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    min-height: 0;
}

.split-container[b-mmreh7ip99] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    height: 100%; /* Required for ResizableDivider JS to measure container height */
    position: relative;
    overflow: hidden;
}

.top-panel[b-mmreh7ip99] {
    /* flex property is controlled by inline style via ResizableDivider JavaScript */
    display: flex;
    flex-direction: column;
    min-height: 100px;
    overflow: hidden;
    flex: 0 0 40%;
}

.top-panel-content[b-mmreh7ip99] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%; /* Ensure MudPaper fills available space */
    min-height: 0; /* Critical for flex scrolling */
}

.raw-text-header[b-mmreh7ip99] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.raw-payload-wrapper[b-mmreh7ip99] {
    flex: 1;
    overflow-y: auto;
    min-height: 0; /* Critical for flex scrolling */
    display: flex;
    flex-direction: column;
}

.bottom-panel[b-mmreh7ip99] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    /* Let flex grow to fill remaining space */
}

.collapsible-panels-container[b-mmreh7ip99] {
    flex: 1;
    display: flex;
    gap: 8px;
    min-height: 0;
}

.panel-expanded[b-mmreh7ip99] {
    flex: 1;
    min-width: 0;
    transition: flex 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Children will handle scrolling */
    min-height: 0; /* Critical for flex scrolling */
}

.panel-collapsed[b-mmreh7ip99] {
    flex: 0 0 40px;
    transition: flex 0.3s ease-in-out;
    overflow: hidden;
}

.panel-header[b-mmreh7ip99] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 4px 8px;
    background: var(--mud-palette-surface);
    border-radius: 4px;
    flex-shrink: 0;
}

.panel-content[b-mmreh7ip99] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.collapsed-panel[b-mmreh7ip99] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    background: var(--mud-palette-surface);
    border-radius: 4px;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background 0.2s ease;
}

.collapsed-panel:hover[b-mmreh7ip99] {
    background: var(--mud-palette-action-default-hover);
}

.collapsed-title[b-mmreh7ip99] {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    font-weight: 600;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
}
/* _content/Application/CallDetailRecord/Components/CdrHighlightedPayload.razor.rz.scp.css */
/* Container for the entire component */
.highlighted-payload-container[b-jwla31ximk] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    height: 100%;
    gap: 8px;
}

/* Toggle button container */
.toggle-button-container[b-jwla31ximk] {
    display: none;
}

/* Wrapper for raw payload content */
.raw-payload-wrapper[b-jwla31ximk] {
    flex: 1;
    min-height: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

/* Plain text display (when highlighting is disabled) */
.raw-payload-box[b-jwla31ximk] {
    background-color: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    line-height: 1.6;
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
    color: var(--mud-palette-text-primary);
    flex: 1;
    min-height: 0;
}

/* Container for highlighted text */
.highlight-container[b-jwla31ximk] {
    background-color: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    padding: 20px 16px 16px 16px; /* Extra top padding for labels */
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    line-height: 2.8; /* Generous line height for labels above text */
    overflow: auto;
    color: var(--mud-palette-text-primary);
    flex: 1;
    min-height: 0;
}

/* Individual text segment */
.text-segment[b-jwla31ximk] {
    white-space: pre;
    display: inline;
}

/* Array group container with border */
.array-group[b-jwla31ximk] {
    border: 2px solid var(--mud-palette-primary);
    border-radius: 6px;
    padding: 4px 8px 4px 8px;
    margin: 0 4px 0 0;
    position: relative;
    display: inline-block;
    background-color: var(--mud-palette-surface);
    vertical-align: baseline;
    margin-top: 18px; /* Space for label above */
}

/* Array group label */
.array-group-label[b-jwla31ximk] {
    position: absolute;
    bottom: 100%;
    left: 8px;
    margin-bottom: 2px;
    background-color: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
    white-space: nowrap;
}

/* Highlighted text wrapper */
.highlight-wrapper[b-jwla31ximk] {
    display: inline;
    position: relative;
    white-space: nowrap;
}

/* Entity label above highlighted text */
.entity-label[b-jwla31ximk] {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 2px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 2px 4px;
    border-radius: 2px;
    white-space: nowrap;
    line-height: 1;
}

/* Highlighted text value with border */
.highlighted-text[b-jwla31ximk] {
    padding: 3px 6px;
    border-radius: 4px;
    color: var(--mud-palette-text-primary);
    font-weight: 500;
    white-space: pre;
    border: 2px solid;
    background-color: transparent;
    display: inline;
    vertical-align: baseline;
}

/* Generic color palette - dynamically assigned to properties */

/* Color 0 - Blue */
.highlighted-text.highlight-color-0[b-jwla31ximk] {
    border-color: #4da6ff;
}

.entity-label.highlight-color-0[b-jwla31ximk] {
    background-color: #4da6ff;
    color: white;
}

/* Color 1 - Purple */
.highlighted-text.highlight-color-1[b-jwla31ximk] {
    border-color: #b366ff;
}

.entity-label.highlight-color-1[b-jwla31ximk] {
    background-color: #b366ff;
    color: white;
}

/* Color 2 - Green */
.highlighted-text.highlight-color-2[b-jwla31ximk] {
    border-color: #4dff4d;
}

.entity-label.highlight-color-2[b-jwla31ximk] {
    background-color: #4dff4d;
    color: #1a5c1a;
}

/* Color 3 - Teal */
.highlighted-text.highlight-color-3[b-jwla31ximk] {
    border-color: #4dd9d9;
}

.entity-label.highlight-color-3[b-jwla31ximk] {
    background-color: #4dd9d9;
    color: white;
}

/* Color 4 - Orange */
.highlighted-text.highlight-color-4[b-jwla31ximk] {
    border-color: #ff9933;
}

.entity-label.highlight-color-4[b-jwla31ximk] {
    background-color: #ff9933;
    color: white;
}

/* Color 5 - Pink */
.highlighted-text.highlight-color-5[b-jwla31ximk] {
    border-color: #ff4d94;
}

.entity-label.highlight-color-5[b-jwla31ximk] {
    background-color: #ff4d94;
    color: white;
}

/* Color 6 - Indigo */
.highlighted-text.highlight-color-6[b-jwla31ximk] {
    border-color: #9933ff;
}

.entity-label.highlight-color-6[b-jwla31ximk] {
    background-color: #9933ff;
    color: white;
}

/* Color 7 - Yellow */
.highlighted-text.highlight-color-7[b-jwla31ximk] {
    border-color: #cccc00;
}

.entity-label.highlight-color-7[b-jwla31ximk] {
    background-color: #cccc00;
    color: white;
}

/* Color 8 - Amber */
.highlighted-text.highlight-color-8[b-jwla31ximk] {
    border-color: #ff9933;
}

.entity-label.highlight-color-8[b-jwla31ximk] {
    background-color: #ff9933;
    color: white;
}

/* Color 9 - Red */
.highlighted-text.highlight-color-9[b-jwla31ximk] {
    border-color: #ff4d4d;
}

.entity-label.highlight-color-9[b-jwla31ximk] {
    background-color: #ff4d4d;
    color: white;
}

/* Color 10 - Cyan */
.highlighted-text.highlight-color-10[b-jwla31ximk] {
    border-color: #00cccc;
}

.entity-label.highlight-color-10[b-jwla31ximk] {
    background-color: #00cccc;
    color: white;
}

/* Color 11 - Gray (default) */
.highlighted-text.highlight-color-11[b-jwla31ximk] {
    border-color: #999999;
}

.entity-label.highlight-color-11[b-jwla31ximk] {
    background-color: #999999;
    color: white;
}
/* _content/Application/CallDetailRecord/Components/CdrManualParsedInfo.razor.rz.scp.css */
/* ============================================
   CDR Manual Parsed Info Component Styles - Component Scoped
   ============================================ */

.json-view[b-hey9googfn] {
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 12px;
}

.events-table-container[b-hey9googfn] {
    margin-bottom: 16px;
}
/* _content/Application/CallDetailRecord/Components/CdrParsedInfo.razor.rz.scp.css */
/* ============================================
   CDR Parsed Info Component Styles - Component Scoped
   ============================================ */

.json-view[b-h9f4hrj6tj] {
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 12px;
}

.events-table-container[b-h9f4hrj6tj] {
    margin-bottom: 16px;
}

.dynamic-json-container[b-h9f4hrj6tj] {
    padding: 8px 0;
    overflow-x: auto;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}
/* _content/Application/CallDetailRecord/Pages/CdrPage.razor.rz.scp.css */
/* ============================================
   CDR Page Layout Styles
   ============================================ */

/* Override the default scrollable-content to remove padding and make it a flex container */
.scrollable-content[b-cyypjqxjla] {
    padding: 0;
    overflow: hidden; /* Remove overflow from this level */
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* Empty state gets padding back */
.empty-state[b-cyypjqxjla] {
    margin: 24px;
}

/* Centered content for loading state */
.centered-content[b-cyypjqxjla] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* _content/Application/CallDetailRecord/Pages/CdrSimulatePage.razor.rz.scp.css */
.simulate-container[b-k98mkyje78] {
    flex: 1;
    display: flex;
    padding: 24px;
    overflow: hidden;
}

.simulate-container[b-k98mkyje78]  .mud-paper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.simulate-paper[b-k98mkyje78] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tab-content[b-k98mkyje78] {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.payload-field[b-k98mkyje78] {
    font-family: monospace;
}
/* _content/Application/Components/Helpers/DynamicJsonRenderer.razor.rz.scp.css */
.json-section[b-5vkkuholis] {
    margin-bottom: 1rem;
}

.section-header[b-5vkkuholis] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0;
    user-select: none;
}

.section-header:hover[b-5vkkuholis] {
    opacity: 0.8;
}

.expand-icon[b-5vkkuholis] {
    color: var(--mud-palette-text-secondary);
}

.section-title[b-5vkkuholis] {
    margin: 0;
    color: var(--mud-palette-text-primary);
}

.section-content[b-5vkkuholis] {
    margin-top: 0.5rem;
}

.json-table[b-5vkkuholis] {
    margin-bottom: 1rem;
}

.json-object[b-5vkkuholis] {
    margin-bottom: 0.5rem;
}

.property-name[b-5vkkuholis] {
    width: 30%;
    vertical-align: top;
    font-weight: 500;
}

.property-value[b-5vkkuholis] {
    width: 70%;
}

.json-array-list[b-5vkkuholis] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.array-item[b-5vkkuholis] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.array-index[b-5vkkuholis] {
    color: var(--mud-palette-text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    min-width: 2rem;
}

.primitive-value[b-5vkkuholis] {
    word-break: break-word;
}

.primitive-value.string[b-5vkkuholis] {
    color: var(--mud-palette-success);
}

.primitive-value.number[b-5vkkuholis] {
    color: var(--mud-palette-info);
}

.primitive-value.true[b-5vkkuholis],
.primitive-value.false[b-5vkkuholis] {
    color: var(--mud-palette-warning);
    font-weight: 500;
}

.null-value[b-5vkkuholis] {
    color: var(--mud-palette-text-secondary);
    font-style: italic;
}

.datetime-value[b-5vkkuholis] {
    color: var(--mud-palette-info);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.nested-object-cell[b-5vkkuholis],
.nested-array-cell[b-5vkkuholis] {
    color: var(--mud-palette-text-secondary);
    font-style: italic;
    font-size: 0.875rem;
}
/* _content/Application/Components/Shared/QueryBuilder/QueryBuilderComponent.razor.rz.scp.css */
.query-builder[b-t5kqo9sc7v] {
    width: 100%;
}

.query-filters-container[b-t5kqo9sc7v] {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.query-filter-row[b-t5kqo9sc7v] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.operator-chip[b-t5kqo9sc7v] {
    font-weight: 600;
    font-size: 0.7rem;
    padding: 4px 8px;
}

.filter-chip[b-t5kqo9sc7v] {
    font-size: 0.875rem;
}

.filter-add-button[b-t5kqo9sc7v] {
    height: 40px;
}

.query-builder-form[b-t5kqo9sc7v] {
    margin-top: 16px;
}
/* _content/Application/Components/Shared/ResizableDivider.razor.rz.scp.css */
/* Resizable Divider Styles */

.resize-divider[b-mrh7eh62va] {
    height: 8px;
    background: transparent;
    cursor: row-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin: 2px 0;
    transition: background-color 0.15s ease;
}

.resize-divider:hover[b-mrh7eh62va],
.resize-divider.dragging[b-mrh7eh62va] {
    background: var(--mud-palette-action-default-hover);
}

.resize-handle[b-mrh7eh62va] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-radius: 4px;
    opacity: 0.5;
    transition: opacity 0.15s ease;
    pointer-events: none; /* Allow mouse events to pass through to the divider */
}

.resize-divider:hover .resize-handle[b-mrh7eh62va],
.resize-divider.dragging .resize-handle[b-mrh7eh62va] {
    opacity: 1;
}
/* _content/Application/I3CallRecord/Components/Timeline/I3TimelineItem.razor.rz.scp.css */
/* Reduce timeline item vertical spacing */
[b-dxtsjrhwm5] .mud-timeline-item {
    margin-bottom: 4px !important;
    padding-bottom: 4px !important;
    padding-left: 0 !important;
}

/* Reduce the timeline vertical line left margin */
[b-dxtsjrhwm5] .mud-timeline-item-dot::before {
    left: 20px !important;
}

/* Make timeline card more compact */
[b-dxtsjrhwm5] .timeline-card {
    margin-bottom: 4px !important;
}

/* Reduce event header padding */
[b-dxtsjrhwm5] .timeline-event-header {
    padding: 6px 12px !important;
}

/* Reduce expansion panel padding */
[b-dxtsjrhwm5] .mud-expand-panel {
    padding: 0 !important;
}

[b-dxtsjrhwm5] .mud-expand-panel-header {
    min-height: 32px !important;
    padding: 4px 12px !important;
}

[b-dxtsjrhwm5] .mud-expand-panel-content {
    padding: 8px 12px !important;
}

/* Make the time display more compact */
[b-dxtsjrhwm5] .mud-timeline-item-opposite {
    min-width: 80px !important;
}

/* Reduce table padding for properties */
[b-dxtsjrhwm5] .mud-table-cell {
    padding: 4px 8px !important;
}

/* Reduce MudTimeline left padding */
[b-dxtsjrhwm5] .mud-timeline {
    padding-left: 8px !important;
}

/* Adjust timeline item content to align closer to dot */
[b-dxtsjrhwm5] .mud-timeline-item-content {
    margin-left: 8px !important;
}
/* _content/Application/NormalizedCallRecord/Components/InvalidNcr/InvalidNormalizedCallRecordDetails.razor.rz.scp.css */
/* Main container */
.details-container[b-2rtnrjehrl] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Split container layout */
.split-container[b-2rtnrjehrl] {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* Top panel for timeline */
.top-panel[b-2rtnrjehrl] {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    min-height: 100px;
    overflow: hidden;
}

/* Error message paper when GUID is invalid */
.error-message-paper[b-2rtnrjehrl] {
    flex: 1;
}

/* Bottom panel for logs */
.bottom-panel[b-2rtnrjehrl] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 80px;
    overflow: hidden;
}

/* Card header with info accent */
.logs-header[b-2rtnrjehrl] {
    border-left: 4px solid var(--mud-palette-info);
}

/* Scrollable content area */
.logs-content[b-2rtnrjehrl] {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

/* Transparent table background */
.transparent-table[b-2rtnrjehrl] {
    background: transparent;
}

/* Monospace table cell */
.message-cell[b-2rtnrjehrl] {
    font-family: monospace;
    font-size: 0.85rem;
}
/* _content/Application/NormalizedCallRecord/Components/NcrCompactView.razor.rz.scp.css */
/* ============================================
   NCR Compact View Styles - Component Scoped
   ============================================ */

.compact-view[b-zn3iqylsen] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.compact-view > :global(.mud-paper)[b-zn3iqylsen] {
    flex-shrink: 0;
}

.compact-search[b-zn3iqylsen] {
    font-size: 0.875rem;
}

.properties-container[b-zn3iqylsen] {
    max-height: calc(100vh - 300px); 
    overflow-y: auto;
}

.compact-properties[b-zn3iqylsen] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.compact-view .footer[b-zn3iqylsen] {
    margin-top: 10px;
}

.compact-table[b-zn3iqylsen] {
    background: transparent;
}

.compact-table td[b-zn3iqylsen] {
    padding: 6px 8px !important;
    font-size: 0.8125rem;
    line-height: 1.4;
    vertical-align: top;
}

.property-name[b-zn3iqylsen] {
    font-weight: 500;
    color: var(--mud-palette-text-secondary);
    width: 160px;
    min-width: 160px;
    white-space: nowrap;
}

.property-value[b-zn3iqylsen] {
    word-break: break-word;
    font-family: 'Roboto Mono', monospace;
    color: var(--mud-palette-text-primary);
}

.compact-table tbody tr:hover[b-zn3iqylsen] {
    background-color: rgba(0, 0, 0, 0.02);
}
/* _content/Application/NormalizedCallRecord/Pages/NcrPage.razor.rz.scp.css */
/* ============================================
   NCR Page Resize Handle Styles - Component Scoped
   ============================================ */

.resize-handle[b-ai7cb15eku] {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    cursor: ew-resize;
    background: transparent;
    transition: background 0.2s ease;
}

.resize-handle:hover[b-ai7cb15eku] {
    background: var(--mud-palette-primary);
}

.resize-handle[b-ai7cb15eku]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    height: 100%;
}

/* ============================================
   NCR Page Layout Styles
   ============================================ */

.ncr-detail-layout[b-ai7cb15eku] {
    height: 100%;
    overflow: hidden;
    padding: 16px;
}

.ncr-compact-panel[b-ai7cb15eku] {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--mud-palette-divider);
    padding-right: 16px;
    overflow: hidden;
    min-height: 0;
}

.ncr-compact-panel > :global(.mud-typography)[b-ai7cb15eku] {
    flex-shrink: 0;
}

.ncr-related-panel[b-ai7cb15eku] {
    overflow-y: auto;
    padding-left: 8px;
}
/* _content/Application/NormalizedCallRecord/Pages/V1NcrPage.razor.rz.scp.css */
/* ============================================
   V1 NCR Page Resize Handle Styles - Component Scoped
   ============================================ */

.resize-handle[b-vxtrf16uy0] {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    cursor: ew-resize;
    background: transparent;
    transition: background 0.2s ease;
}

.resize-handle:hover[b-vxtrf16uy0] {
    background: var(--mud-palette-primary);
}

.resize-handle[b-vxtrf16uy0]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    height: 100%;
}

/* ============================================
   V1 NCR Page Layout Styles
   ============================================ */

.ncr-detail-layout[b-vxtrf16uy0] {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 16px;
    height: 100%;
    overflow: hidden;
    padding: 16px;
}

.ncr-compact-panel[b-vxtrf16uy0] {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--mud-palette-divider);
    padding-right: 16px;
    overflow: hidden;
    min-height: 0;
}

.ncr-compact-panel > :global(.mud-typography)[b-vxtrf16uy0] {
    flex-shrink: 0;
}

.ncr-related-panel[b-vxtrf16uy0] {
    overflow-y: auto;
    padding-left: 8px;
}
