/* /Components/Shared/AgentChat.razor.rz.scp.css */
/* AgentChat Component Styles */
.agent-chat-component[b-u5fajw28qi] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--mud-palette-surface);
    overflow: hidden;
}

.agent-header[b-u5fajw28qi] {
    padding: 16px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.quick-actions[b-u5fajw28qi] {
    padding: 12px 16px;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.quick-actions-title[b-u5fajw28qi] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 8px;
}

.quick-actions-grid[b-u5fajw28qi] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.quick-action-button[b-u5fajw28qi] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 12px;
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s ease;
}

.quick-action-button:hover[b-u5fajw28qi] {
    background: var(--mud-palette-action-default-hover);
    border-color: var(--mud-palette-primary);
}

.quick-action-button .action-title[b-u5fajw28qi] {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--mud-palette-text-primary);
}

.quick-action-button .action-desc[b-u5fajw28qi] {
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.conversation-area[b-u5fajw28qi] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
}

.conversation-empty[b-u5fajw28qi] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--mud-palette-text-secondary);
    padding: 32px;
}

.message[b-u5fajw28qi] {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.message.user[b-u5fajw28qi] {
    align-self: flex-end;
}

.message.agent[b-u5fajw28qi] {
    align-self: flex-start;
}

.message-bubble[b-u5fajw28qi] {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.message.user .message-bubble[b-u5fajw28qi] {
    background: var(--mud-palette-primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.agent .message-bubble[b-u5fajw28qi] {
    background: var(--mud-palette-background);
    color: var(--mud-palette-text-primary);
    border-bottom-left-radius: 4px;
}

.message-time[b-u5fajw28qi] {
    font-size: 0.7rem;
    color: var(--mud-palette-text-secondary);
    margin-top: 4px;
    padding: 0 8px;
}

.message.user .message-time[b-u5fajw28qi] {
    text-align: right;
}

.message-actions[b-u5fajw28qi] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    padding: 0 4px;
}

.suggestions-area[b-u5fajw28qi] {
    padding: 12px 16px;
    background: var(--mud-palette-background);
    border-top: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.suggestions-area .suggestion-title[b-u5fajw28qi] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 8px;
}

.input-area[b-u5fajw28qi] {
    padding: 12px 16px;
    border-top: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-surface);
    flex-shrink: 0;
}

.input-wrapper[b-u5fajw28qi] {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.input-wrapper .mud-input-control[b-u5fajw28qi] {
    flex: 1;
}

/* Context chips */
.context-chips[b-u5fajw28qi] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

/* Thinking animation */
.thinking-indicator[b-u5fajw28qi] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--mud-palette-text-secondary);
    font-size: 0.875rem;
}

.thinking-dots[b-u5fajw28qi] {
    display: flex;
    gap: 4px;
}

.thinking-dots span[b-u5fajw28qi] {
    width: 6px;
    height: 6px;
    background: var(--mud-palette-text-secondary);
    border-radius: 50%;
    animation: thinking-b-u5fajw28qi 1.4s infinite ease-in-out both;
}

.thinking-dots span:nth-child(1)[b-u5fajw28qi] { animation-delay: -0.32s; }
.thinking-dots span:nth-child(2)[b-u5fajw28qi] { animation-delay: -0.16s; }
.thinking-dots span:nth-child(3)[b-u5fajw28qi] { animation-delay: 0; }

@keyframes thinking-b-u5fajw28qi {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
/* /Components/Shared/PropertyDetailPanel.razor.rz.scp.css */
/* PropertyDetailPanel Component Styles */
.property-detail-panel[b-xgn4gagzoq] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--mud-palette-surface);
    overflow: hidden;
}

.detail-empty[b-xgn4gagzoq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
    color: var(--mud-palette-text-secondary);
}

.detail-header[b-xgn4gagzoq] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.street-view-section[b-xgn4gagzoq] {
    padding: 0;
    flex-shrink: 0;
}

.street-view-container[b-xgn4gagzoq] {
    width: 100%;
    height: 180px;
    background: var(--mud-palette-background-grey);
    overflow: hidden;
}

.street-view-image[b-xgn4gagzoq] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.street-view-placeholder[b-xgn4gagzoq] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--mud-palette-text-secondary);
    background: var(--mud-palette-background);
}

.detail-stats[b-xgn4gagzoq] {
    padding: 16px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.stat-box[b-xgn4gagzoq] {
    background: var(--mud-palette-background);
    padding: 12px;
    border-radius: 8px;
}

.detail-tabs[b-xgn4gagzoq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.detail-tabs[b-xgn4gagzoq]  .mud-tabs-panels {
    flex: 1;
    overflow-y: auto;
}

.tab-content[b-xgn4gagzoq] {
    padding: 16px;
}

.detail-section[b-xgn4gagzoq] {
    margin-bottom: 8px;
}

.section-title[b-xgn4gagzoq] {
    color: var(--mud-palette-text-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.permit-list[b-xgn4gagzoq] {
    max-height: 300px;
    overflow-y: auto;
}

.permit-item[b-xgn4gagzoq] {
    border-bottom: 1px solid var(--mud-palette-lines-default);
    padding: 12px 0;
}

.permit-item:last-child[b-xgn4gagzoq] {
    border-bottom: none;
}

.permit-header[b-xgn4gagzoq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.empty-permits[b-xgn4gagzoq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    color: var(--mud-palette-text-secondary);
}

.detail-actions[b-xgn4gagzoq] {
    padding: 16px;
    border-top: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-background);
    flex-shrink: 0;
}

/* Text muted helper */
.text-muted[b-xgn4gagzoq] {
    color: var(--mud-palette-text-secondary);
}
/* /Components/Shared/PropertyGrid.razor.rz.scp.css */
/* PropertyGrid Component Styles */
.property-grid-component[b-f37p7m9y72] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--mud-palette-surface);
}

.grid-toolbar[b-f37p7m9y72] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.grid-empty[b-f37p7m9y72] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
    color: var(--mud-palette-text-secondary);
}

.grid-table-wrapper[b-f37p7m9y72] {
    flex: 1;
    overflow: hidden;
}

.grid-table-wrapper table[b-f37p7m9y72] {
    width: 100%;
}

.grid-table-wrapper thead th[b-f37p7m9y72] {
    background: var(--mud-palette-background);
    position: sticky;
    top: 0;
    z-index: 1;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
}

.grid-table-wrapper th.sortable[b-f37p7m9y72] {
    cursor: pointer;
    user-select: none;
}

.grid-table-wrapper th.sortable:hover[b-f37p7m9y72] {
    background: var(--mud-palette-action-default-hover);
}

.grid-table-wrapper tbody td[b-f37p7m9y72] {
    padding: 10px 16px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.grid-table-wrapper tbody tr:hover[b-f37p7m9y72] {
    background: var(--mud-palette-action-default-hover);
}

.grid-table-wrapper tbody tr.selected[b-f37p7m9y72] {
    background: var(--mud-palette-primary-lighten);
}

.sort-indicator[b-f37p7m9y72] {
    margin-left: 4px;
    font-size: 0.75rem;
    color: var(--mud-palette-primary);
}

.grid-cards-wrapper[b-f37p7m9y72] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.property-card[b-f37p7m9y72] {
    cursor: pointer;
    transition: all 0.15s ease;
}

.property-card:hover[b-f37p7m9y72] {
    transform: translateY(-2px);
    box-shadow: var(--mud-elevation-4);
}

.property-card.selected[b-f37p7m9y72] {
    border: 2px solid var(--mud-palette-primary);
}

.grid-selection-bar[b-f37p7m9y72] {
    padding: 12px 16px;
    background: var(--mud-palette-primary-lighten);
    border-top: 1px solid var(--mud-palette-primary);
    flex-shrink: 0;
}

.grid-pagination[b-f37p7m9y72] {
    display: flex;
    justify-content: center;
    padding: 12px 16px;
    border-top: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-background);
    flex-shrink: 0;
}

/* Text muted helper */
.text-muted[b-f37p7m9y72] {
    color: var(--mud-palette-text-secondary);
}
/* /Components/Shared/PropertyMap.razor.rz.scp.css */
/* PropertyMap Component Styles */
.property-map[b-hchxrlem5u] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--mud-palette-surface);
}

.map-toolbar[b-hchxrlem5u] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--mud-palette-background);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.map-canvas-wrapper[b-hchxrlem5u] {
    flex: 1;
    position: relative;
    min-height: 0;
}

.map-canvas[b-hchxrlem5u] {
    width: 100%;
    height: 100%;
}

.map-loading-overlay[b-hchxrlem5u] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 100;
}

.map-legend[b-hchxrlem5u] {
    padding: 8px 12px;
    background: var(--mud-palette-background);
    border-top: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.legend-marker[b-hchxrlem5u] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.legend-high[b-hchxrlem5u] {
    background: var(--mud-palette-error);
}

.legend-medium[b-hchxrlem5u] {
    background: var(--mud-palette-warning);
}

.legend-low[b-hchxrlem5u] {
    background: var(--mud-palette-success);
}

.legend-permit[b-hchxrlem5u] {
    background: var(--mud-palette-info);
}
/* /Components/Shared/QueryPanel.razor.rz.scp.css */
/* QueryPanel Component Styles */
.query-panel-component[b-0ptl42r8cw] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.query-header[b-0ptl42r8cw] {
    padding: 16px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.filter-sections[b-0ptl42r8cw] {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.filter-section[b-0ptl42r8cw] {
    padding: 12px 16px;
}

.section-header[b-0ptl42r8cw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 4px 0;
    margin-bottom: 8px;
}

.section-header:hover[b-0ptl42r8cw] {
    color: var(--mud-palette-primary);
}

.filter-content[b-0ptl42r8cw] {
    padding-top: 4px;
}

.filter-content.collapsed[b-0ptl42r8cw] {
    display: none;
}

.query-actions[b-0ptl42r8cw] {
    padding: 16px;
    border-top: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-background);
    flex-shrink: 0;
}

/* Range slider styling */
.range-inputs[b-0ptl42r8cw] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.range-inputs span[b-0ptl42r8cw] {
    color: var(--mud-palette-text-secondary);
}

/* Active filters badge */
.filter-badge[b-0ptl42r8cw] {
    background: var(--mud-palette-primary);
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-ljeio1gyfm] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ljeio1gyfm] {
    flex: 1;
}

.sidebar[b-ljeio1gyfm] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ljeio1gyfm] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ljeio1gyfm]  a, .top-row[b-ljeio1gyfm]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ljeio1gyfm]  a:hover, .top-row[b-ljeio1gyfm]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ljeio1gyfm]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ljeio1gyfm] {
        justify-content: space-between;
    }

    .top-row[b-ljeio1gyfm]  a, .top-row[b-ljeio1gyfm]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ljeio1gyfm] {
        flex-direction: row;
    }

    .sidebar[b-ljeio1gyfm] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ljeio1gyfm] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ljeio1gyfm]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ljeio1gyfm], article[b-ljeio1gyfm] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-lpkstz3zr3] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-lpkstz3zr3] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-lpkstz3zr3] {
    font-size: 1.1rem;
}

.bi[b-lpkstz3zr3] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-lpkstz3zr3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-lpkstz3zr3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-lpkstz3zr3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-lpkstz3zr3] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-lpkstz3zr3] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-lpkstz3zr3] {
        padding-bottom: 1rem;
    }

    .nav-item[b-lpkstz3zr3]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-lpkstz3zr3]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-lpkstz3zr3]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-lpkstz3zr3] {
        display: none;
    }

    .collapse[b-lpkstz3zr3] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-lpkstz3zr3] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Residences.razor.rz.scp.css */
/* Residences Workspace Layout */
.residences-workspace[b-0a2m2lzwo2] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background: var(--mud-palette-background);
}

/* Page Header */
.page-header[b-0a2m2lzwo2] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 24px;
    background: var(--mud-palette-surface);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.page-header .header-content[b-0a2m2lzwo2] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-header .tag[b-0a2m2lzwo2] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mud-palette-primary);
    margin: 0;
}

.page-header h1[b-0a2m2lzwo2] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--mud-palette-text-primary);
}

.page-header .section-subtitle[b-0a2m2lzwo2] {
    font-size: 0.875rem;
    color: var(--mud-palette-text-secondary);
    margin: 0;
}

.page-header .header-actions[b-0a2m2lzwo2] {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Workspace Layout */
.workspace-layout[b-0a2m2lzwo2] {
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Left Panel */
.workspace-left[b-0a2m2lzwo2] {
    width: 360px;
    min-width: 360px;
    background: var(--mud-palette-surface);
    border-right: 1px solid var(--mud-palette-lines-default);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: width 0.2s ease, min-width 0.2s ease;
    overflow: hidden;
}

.workspace-left.collapsed[b-0a2m2lzwo2] {
    width: 0;
    min-width: 0;
    border-right: none;
}

.workspace-left.collapsed > :not(.panel-toggle)[b-0a2m2lzwo2] {
    display: none;
}

/* Center Area */
.workspace-center[b-0a2m2lzwo2] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

/* Map Section */
.map-section[b-0a2m2lzwo2] {
    height: 350px;
    min-height: 200px;
    position: relative;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: height 0.2s ease, min-height 0.2s ease;
}

.map-section.collapsed[b-0a2m2lzwo2] {
    height: 48px;
    min-height: 48px;
}

.map-section.collapsed[b-0a2m2lzwo2]  .property-map {
    display: none;
}

/* Results Section */
.results-section[b-0a2m2lzwo2] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Right Panel */
.workspace-right[b-0a2m2lzwo2] {
    width: 380px;
    min-width: 380px;
    background: var(--mud-palette-surface);
    border-left: 1px solid var(--mud-palette-lines-default);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: width 0.2s ease, min-width 0.2s ease;
    overflow: hidden;
}

.workspace-right.collapsed[b-0a2m2lzwo2] {
    width: 0;
    min-width: 0;
    border-left: none;
}

.workspace-right.collapsed > :not(.panel-toggle)[b-0a2m2lzwo2] {
    display: none;
}

/* Panel Toggle Buttons */
.panel-toggle[b-0a2m2lzwo2] {
    position: absolute;
    z-index: 10;
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    box-shadow: var(--mud-elevation-2);
}

.left-toggle[b-0a2m2lzwo2] {
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
}

.right-toggle[b-0a2m2lzwo2] {
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
}

.section-toggle[b-0a2m2lzwo2] {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 4px;
    box-shadow: var(--mud-elevation-1);
}

.map-toggle[b-0a2m2lzwo2] {
    z-index: 100;
}

/* Status Bar */
.status-bar[b-0a2m2lzwo2] {
    padding: 8px 24px;
    background: var(--mud-palette-surface);
    border-top: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.status-bar .mx-2[b-0a2m2lzwo2] {
    margin: 0 8px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .workspace-left[b-0a2m2lzwo2] {
        width: 320px;
        min-width: 320px;
    }

    .workspace-right[b-0a2m2lzwo2] {
        width: 340px;
        min-width: 340px;
    }
}

@media (max-width: 1200px) {
    .workspace-left[b-0a2m2lzwo2] {
        width: 280px;
        min-width: 280px;
    }

    .workspace-right[b-0a2m2lzwo2] {
        width: 300px;
        min-width: 300px;
    }

    .map-section[b-0a2m2lzwo2] {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .workspace-layout[b-0a2m2lzwo2] {
        flex-direction: column;
    }

    .workspace-left[b-0a2m2lzwo2],
    .workspace-right[b-0a2m2lzwo2] {
        width: 100% !important;
        min-width: 100% !important;
        height: auto;
        max-height: 50vh;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid var(--mud-palette-lines-default);
    }

    .workspace-left.collapsed[b-0a2m2lzwo2],
    .workspace-right.collapsed[b-0a2m2lzwo2] {
        max-height: 0;
        overflow: hidden;
    }

    .panel-toggle[b-0a2m2lzwo2] {
        display: none;
    }

    .map-section[b-0a2m2lzwo2] {
        height: 250px;
        min-height: 150px;
    }
}

/* MudTabs customization inside left panel */
.workspace-left[b-0a2m2lzwo2]  .mud-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.workspace-left[b-0a2m2lzwo2]  .mud-tabs-panels {
    flex: 1;
    overflow: auto;
}

.workspace-left[b-0a2m2lzwo2]  .mud-tab-panel {
    padding: 0;
}

/* QueryPanel and AgentChat fill their containers */
.workspace-left[b-0a2m2lzwo2]  .query-panel-component,
.workspace-left[b-0a2m2lzwo2]  .agent-chat-component {
    height: 100%;
}

/* Property detail panel fills right panel */
.workspace-right[b-0a2m2lzwo2]  .property-detail-panel {
    height: 100%;
    overflow: auto;
}

/* Property grid fills results section */
.results-section[b-0a2m2lzwo2]  .property-grid-component {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Property map fills map section */
.map-section[b-0a2m2lzwo2]  .property-map {
    height: 100%;
}
