/* _content/PraxisCloudBlazor/Components/Dashboard/DrillDownModal.razor.rz.scp.css */
.drill-down-backdrop[b-m29wyhawbx] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    animation: fadeIn-b-m29wyhawbx 0.15s ease-out;
}

.drill-down-modal[b-m29wyhawbx] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    animation: slideIn-b-m29wyhawbx 0.2s ease-out;
}

@keyframes fadeIn-b-m29wyhawbx {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn-b-m29wyhawbx {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.drill-down-header[b-m29wyhawbx] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.drill-down-header.drag-handle[b-m29wyhawbx] {
    cursor: move;
    user-select: none;
}

.drill-down-title h5[b-m29wyhawbx] {
    margin: 0;
    font-weight: 600;
}

.drill-down-subtitle[b-m29wyhawbx] {
    font-size: 0.875rem;
    color: #6c757d;
}

.drill-down-breadcrumb[b-m29wyhawbx] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.breadcrumb-item[b-m29wyhawbx] {
    background: none;
    border: none;
    color: #0d6efd;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
}

.breadcrumb-item:hover:not(.current):not(:disabled)[b-m29wyhawbx] {
    background: #e7f1ff;
    text-decoration: underline;
}

.breadcrumb-item.current[b-m29wyhawbx] {
    color: #6c757d;
    cursor: default;
}

.breadcrumb-separator[b-m29wyhawbx] {
    color: #adb5bd;
}

.drill-down-body[b-m29wyhawbx] {
    flex: 1;
    overflow: auto;
    padding: 0;
    min-height: 200px;
}

.drill-down-loading[b-m29wyhawbx],
.drill-down-error[b-m29wyhawbx],
.drill-down-no-data[b-m29wyhawbx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.drill-down-loading p[b-m29wyhawbx],
.drill-down-error p[b-m29wyhawbx],
.drill-down-no-data p[b-m29wyhawbx] {
    margin-top: 16px;
    color: #6c757d;
}

.drill-down-error i[b-m29wyhawbx],
.drill-down-no-data i[b-m29wyhawbx] {
    font-size: 3rem;
}

.drill-down-table-container[b-m29wyhawbx] {
    max-height: calc(85vh - 180px);
    overflow: auto;
}

.drill-down-table[b-m29wyhawbx] {
    margin: 0;
    font-size: 0.85rem;
}

.drill-down-table th[b-m29wyhawbx],
.drill-down-table td[b-m29wyhawbx] {
    padding: 0.5rem 0.65rem;
}

.drill-down-table thead th[b-m29wyhawbx] {
    position: sticky;
    top: 0;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
    z-index: 1;
    font-size: 0.8rem;
}

.drill-down-table th.sortable[b-m29wyhawbx] {
    cursor: pointer;
    user-select: none;
}

.drill-down-table th.sortable:hover[b-m29wyhawbx] {
    background: #e9ecef;
}

.drill-down-table th.sorted[b-m29wyhawbx] {
    background: #e3f2fd;
}

.drill-down-table tbody tr.clickable-row[b-m29wyhawbx] {
    cursor: pointer;
}

.drill-down-table tbody tr.clickable-row:hover[b-m29wyhawbx] {
    background: #e3f2fd !important;
}

.drill-down-footer-info[b-m29wyhawbx] {
    padding: 8px 16px;
    font-size: 0.875rem;
    color: #6c757d;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.drill-down-actions[b-m29wyhawbx] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 20px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

/* Inline SQL Debug (shown when no data returned) */
.sql-debug-inline[b-m29wyhawbx] {
    width: 100%;
    max-width: 800px;
    padding: 12px;
    background: #1e1e1e;
    border-radius: 8px;
    text-align: left;
}

.sql-query-inline[b-m29wyhawbx] {
    margin: 0;
    padding: 12px;
    background: #2d2d2d;
    border-radius: 4px;
    color: #d4d4d4;
    font-size: 0.75rem;
    font-family: 'Consolas', 'Monaco', monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 200px;
    overflow-y: auto;
}
/* _content/PraxisCloudBlazor/Components/Dashboard/Editor/WidgetEditorModal.razor.rz.scp.css */
/* ============================================================================
   WIDGET EDITOR MODAL STYLES
   ============================================================================
   Styles for the slide-out widget editor panel.
   ============================================================================ */

/* Backdrop overlay */
.widget-editor-backdrop[b-5pyrf3qciz] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    animation: fadeIn-b-5pyrf3qciz 0.2s ease;
}

@keyframes fadeIn-b-5pyrf3qciz {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Main slide-out panel */
.widget-editor-panel[b-5pyrf3qciz] {
    position: fixed;
    top: 0;
    right: -900px;
    width: 900px;
    max-width: 95vw;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.widget-editor-panel.open[b-5pyrf3qciz] {
    right: 0;
}

/* Header */
.widget-editor-header[b-5pyrf3qciz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2cace2 0%, #1e88c9 100%);
    color: white;
    flex-shrink: 0;
}

.widget-editor-header h5[b-5pyrf3qciz] {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

/* Tab navigation */
.widget-editor-tabs[b-5pyrf3qciz] {
    padding: 0 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    flex-shrink: 0;
}

.widget-editor-tabs .nav-item[b-5pyrf3qciz] {
    margin-bottom: 0;
}

.widget-editor-tabs .nav-link[b-5pyrf3qciz] {
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    padding: 12px 16px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.2s ease;
}

.widget-editor-tabs .nav-link:hover[b-5pyrf3qciz] {
    color: #2cace2;
    background: transparent;
}

.widget-editor-tabs .nav-link.active[b-5pyrf3qciz] {
    color: #2cace2;
    background: transparent;
    border-bottom-color: #2cace2;
}

.widget-editor-tabs .nav-link.has-error[b-5pyrf3qciz] {
    color: #dc3545;
}

.widget-editor-tabs .nav-link.has-error.active[b-5pyrf3qciz] {
    border-bottom-color: #dc3545;
}

/* Content area */
.widget-editor-content[b-5pyrf3qciz] {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* Form section (left side) */
.widget-editor-form[b-5pyrf3qciz] {
    flex: 0 0 60%;
    padding: 24px;
    overflow-y: auto;
    background: #fff;
}

/* Preview section (right side) */
.widget-editor-preview[b-5pyrf3qciz] {
    flex: 0 0 40%;
    padding: 24px;
    background: #f8f9fa;
    border-left: 1px solid #dee2e6;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.preview-header[b-5pyrf3qciz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dee2e6;
}

.preview-header h6[b-5pyrf3qciz] {
    margin: 0;
    color: #495057;
    font-weight: 600;
}

.preview-content[b-5pyrf3qciz] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

/* Preview widget frame */
.preview-widget-frame[b-5pyrf3qciz] {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-width: 200px;
    max-width: 100%;
}

.preview-widget-header[b-5pyrf3qciz] {
    background: #f8f9fa;
    padding: 10px 12px;
    border-bottom: 1px solid #dee2e6;
    font-weight: 500;
    font-size: 0.9rem;
    color: #495057;
    display: flex;
    align-items: center;
}

.preview-widget-body[b-5pyrf3qciz] {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    text-align: center;
}

.preview-info[b-5pyrf3qciz] {
    text-align: center;
}

/* Footer */
.widget-editor-footer[b-5pyrf3qciz] {
    padding: 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.footer-messages[b-5pyrf3qciz] {
    flex: 1;
    margin-right: 16px;
}

.footer-messages .alert[b-5pyrf3qciz] {
    font-size: 0.875rem;
}

.footer-actions[b-5pyrf3qciz] {
    display: flex;
    gap: 12px;
}

/* Form styling */
[b-5pyrf3qciz] .form-section {
    margin-bottom: 24px;
}

[b-5pyrf3qciz] .form-section-title {
    font-weight: 600;
    color: #495057;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

[b-5pyrf3qciz] .form-group {
    margin-bottom: 16px;
}

[b-5pyrf3qciz] .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 6px;
    display: block;
}

[b-5pyrf3qciz] .form-control,
[b-5pyrf3qciz] .form-select {
    border-radius: 6px;
}

[b-5pyrf3qciz] .form-control:focus,
[b-5pyrf3qciz] .form-select:focus {
    border-color: #2cace2;
    box-shadow: 0 0 0 0.2rem rgba(44, 172, 226, 0.25);
}

[b-5pyrf3qciz] .form-control.is-invalid,
[b-5pyrf3qciz] .form-select.is-invalid {
    border-color: #dc3545;
}

[b-5pyrf3qciz] .validation-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
}

[b-5pyrf3qciz] .form-text {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Widget type selector grid */
[b-5pyrf3qciz] .widget-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

[b-5pyrf3qciz] .widget-type-card {
    padding: 16px 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

[b-5pyrf3qciz] .widget-type-card:hover {
    border-color: #2cace2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 172, 226, 0.15);
}

[b-5pyrf3qciz] .widget-type-card.selected {
    border-color: #2cace2;
    background: linear-gradient(135deg, #e3f5fc 0%, #d1eef9 100%);
}

[b-5pyrf3qciz] .widget-type-card i {
    font-size: 1.75rem;
    color: #2cace2;
    margin-bottom: 8px;
    display: block;
}

[b-5pyrf3qciz] .widget-type-card span {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    color: #495057;
}

/* Color picker styles */
[b-5pyrf3qciz] .color-picker-list {
    margin-bottom: 16px;
}

[b-5pyrf3qciz] .color-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
}

[b-5pyrf3qciz] .color-chip {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #dee2e6;
    transition: all 0.2s ease;
}

[b-5pyrf3qciz] .color-chip:hover {
    border-color: #2cace2;
    transform: scale(1.05);
}

[b-5pyrf3qciz] .color-chip input[type="color"] {
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    padding: 0;
}

[b-5pyrf3qciz] .color-chip .remove-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dc3545;
    color: white;
    border: 2px solid white;
    font-size: 10px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

[b-5pyrf3qciz] .color-chip:hover .remove-btn {
    display: flex;
}

[b-5pyrf3qciz] .add-color-btn {
    width: 40px;
    height: 40px;
    border: 2px dashed #dee2e6;
    border-radius: 6px;
    background: transparent;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

[b-5pyrf3qciz] .add-color-btn:hover:not(:disabled) {
    border-color: #2cace2;
    color: #2cace2;
}

[b-5pyrf3qciz] .add-color-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Table column config */
[b-5pyrf3qciz] .column-config-table {
    width: 100%;
    margin-bottom: 12px;
}

[b-5pyrf3qciz] .column-config-table th {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.85rem;
    padding: 8px 4px;
    border-bottom: 1px solid #dee2e6;
}

[b-5pyrf3qciz] .column-config-table td {
    padding: 8px 4px;
    vertical-align: middle;
}

[b-5pyrf3qciz] .column-config-table .form-control,
[b-5pyrf3qciz] .column-config-table .form-select {
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
}

[b-5pyrf3qciz] .column-config-table .btn-sm {
    padding: 0.25rem 0.5rem;
}

/* Slider styles */
[b-5pyrf3qciz] .size-slider {
    margin: 16px 0;
}

[b-5pyrf3qciz] .size-slider-track {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 4px;
}

[b-5pyrf3qciz] .size-slider-track span {
    font-size: 0.75rem;
    color: #6c757d;
}

[b-5pyrf3qciz] .size-preview {
    display: flex;
    gap: 4px;
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

[b-5pyrf3qciz] .size-preview-cell {
    width: 24px;
    height: 24px;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    background: #fff;
}

[b-5pyrf3qciz] .size-preview-cell.active {
    background: #2cace2;
    border-color: #2cace2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .widget-editor-panel[b-5pyrf3qciz] {
        width: 100vw;
        right: -100vw;
    }

    .widget-editor-content[b-5pyrf3qciz] {
        flex-direction: column;
    }

    .widget-editor-form[b-5pyrf3qciz],
    .widget-editor-preview[b-5pyrf3qciz] {
        flex: none;
        width: 100%;
    }

    .widget-editor-preview[b-5pyrf3qciz] {
        border-left: none;
        border-top: 1px solid #dee2e6;
        max-height: 250px;
    }

    [b-5pyrf3qciz] .widget-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* _content/PraxisCloudBlazor/Components/Layout/TabLayout.razor.rz.scp.css */
/* TabLayout.razor.css - Tab-based navigation styling */

.tab-layout[b-av79ni4de7] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
}

/* Header Section */
.tab-header[b-av79ni4de7] {
    background-color: #ffffff;
    border-bottom: 1px solid white;
    padding: 5px 0;
}

.tab-header table[b-av79ni4de7] {
    border-collapse: collapse;
}

.header-logo[b-av79ni4de7] {
    max-height: 80px;
    max-width: 300px;
}

.praxis-process[b-av79ni4de7] {
    max-height: 40px;
}

.logout-link[b-av79ni4de7] {
    color: #0066cc;
    text-decoration: none;
    font-size: 12px;
}

.logout-link:hover[b-av79ni4de7] {
    text-decoration: underline;
}

.help-icon[b-av79ni4de7] {
    max-height: 30px;
}

.copyright-small[b-av79ni4de7] {
    font-size: 9px;
    color: #666;
    white-space: nowrap;
}

/* Tab Container */
.tab-container[b-av79ni4de7] {
    background-color: white;
    border-bottom: 1px solid grey;
    padding: 0;
}

.tab-list[b-av79ni4de7] {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Individual Tab Items */
.tab-item[b-av79ni4de7] {
    padding: 8px 12px;
    margin: 2px 1px 0 1px;
    background-color: #8fc6ea;
    border: 1px solid #999;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    color: black;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s;
}

    .tab-item:hover:not(.disabled)[b-av79ni4de7] {
        background-color: #ffc107;
        color: white;
    }

/* Selected Tab */
    .tab-item.selected[b-av79ni4de7] {
        background-color: #0d6efd;
        color: white;
        border-color: #999;
        font-weight: bold;
        position: relative;
        z-index: 1;
    }

/* Disabled Tab */
.tab-item.disabled[b-av79ni4de7] {
    background-color: #e8e8e8;
    color: #999999;
    cursor: not-allowed;
    border-color: #ccc;
}

/* Tab Content Area */
.tab-content[b-av79ni4de7] {
    flex: 1;
    background-color: #ffffff;
    padding: 15px;
    border: 1px solid #ccc;
    border-top: none;
    margin: 0 10px;
    min-height: 400px;
    position: relative;
}

/* Footer Section */
.tab-footer[b-av79ni4de7] {
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    margin-top: auto;
}

.tab-footer table[b-av79ni4de7] {
    border-collapse: collapse;
}

.tab-footer img[b-av79ni4de7] {
    max-height: 25px;
}

.copyright-footer[b-av79ni4de7] {
    font-size: 10px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .tab-item[b-av79ni4de7] {
        padding: 6px 8px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .tab-list[b-av79ni4de7] {
        flex-wrap: wrap;
    }

    .tab-item[b-av79ni4de7] {
        padding: 5px 6px;
        font-size: 9px;
    }

    .copyright-small[b-av79ni4de7] {
        display: none;
    }
}
/* _content/PraxisCloudBlazor/Components/Pages/Pricing/CommonMaterialPricing.razor.rz.scp.css */
.toolbar[b-vimxav63w0]  .icon-button {
    width: 150px;
}
/* _content/PraxisCloudBlazor/Components/Pages/Pricing/ServicePricing.razor.rz.scp.css */
/* ServicePricing Page Styles */

/* Main content area - use flexbox to enable dynamic sizing */
.pricing-content-container[b-0ye8fsv5h6] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px); /* Full viewport height minus header/nav/padding */
    gap: 1rem;
    overflow: hidden; /* Prevent page-level scrolling */
}

/* Task Summary Grid - fixed size when visible */
.task-summary-section[b-0ye8fsv5h6] {
    flex-shrink: 0; /* Don't shrink */
}

/* Selected Task Detail Grid - fixed size when visible */
.selected-tasks-section[b-0ye8fsv5h6] {
    flex-shrink: 0; /* Don't shrink */
}

/* Page Selection and Search - fixed size */
.page-selection-section[b-0ye8fsv5h6] {
    flex-shrink: 0; /* Don't shrink */
}

/* Price Book Grid - takes remaining space and resizes dynamically */
.price-book-section[b-0ye8fsv5h6] {
    flex: 1; /* Take all remaining space */
    min-height: 200px; /* Minimum height */
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

/* Price Book Grid container - fills parent */
.price-book-grid-container[b-0ye8fsv5h6] {
    flex: 1;
    overflow: hidden; /* No scroll here - scroll happens in .GridDiv */
    margin-bottom: 20px;
}

/* Override the fixed scrollable-container height to use flex */
.price-book-grid-container .GridDiv[b-0ye8fsv5h6] {
    height: 100%;
    max-height: none;
    overflow-y: auto;
}

/* Ensure sticky header works with dynamic height */
.price-book-grid-container .sticky-header[b-0ye8fsv5h6] {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #f8f9fa;
}
/* _content/PraxisCloudBlazor/Components/Shared/ReferenceAutocomplete.razor.rz.scp.css */
.reference-autocomplete[b-leicnjl50j] {
    position: relative;
    display: inline-block;
}

.autocomplete-dropdown[b-leicnjl50j] {
    position: absolute;
    z-index: 1000;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-top: 2px;
}

.autocomplete-item[b-leicnjl50j] {
    padding: 5px 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: left;
}

.autocomplete-item:last-child[b-leicnjl50j] {
    border-bottom: none;
}

.autocomplete-item:hover[b-leicnjl50j] {
    background-color: #f8f9fa;
}

.autocomplete-item.selected[b-leicnjl50j] {
    background-color: #e9ecef;
    font-weight: bold;
}
