/* _content/AquiloRazorClassLibrary/Components/Generic/SimpleViewModelCard.razor.rz.scp.css */
/* SimpleViewModelCard Component-Isolated Styles */

/* Scoped styles that only apply to this component */
.simple-viewmodel-card-header[b-707pq4nk6k]  .mud-badge-root {
    display: inline-flex;
    align-items: center;
    height: fit-content;
}

/* Fix alignment for header content when using typography components */
.simple-viewmodel-card-header[b-707pq4nk6k]  .mud-typography {
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
    hyphens: auto;
}

/* Ensure avatar maintains proper sizing and alignment */
.simple-viewmodel-card-header[b-707pq4nk6k]  .mud-avatar {
    flex-shrink: 0;
}

/* Ensure all header elements are vertically centered */
.simple-viewmodel-card-header > *[b-707pq4nk6k] {
    align-self: center;
}

/* Action buttons spacing and alignment */
.simple-viewmodel-card-header-actions[b-707pq4nk6k]  > * + * {
    margin-left: 8px;
}

.simple-viewmodel-card-header-actions[b-707pq4nk6k]  .mud-icon-button {
    margin: 0;
}
/* _content/AquiloRazorClassLibrary/Features/Documentable/AquiloFileUploadModal.razor.rz.scp.css */
/* AquiloFileUploadModal styles - Desktop optimized two-panel layout with drag & drop */

.file-upload-modal-container[b-pbdiqkmjp0] {
    min-height: 600px;
}

/* Two-panel layout container */
.preview-layout[b-pbdiqkmjp0] {
    display: flex;
    gap: 16px;
    height: 500px;
    min-height: 500px;
    max-height: 70vh;
}

/* Left panel container: Thumbnail grid + drop zone */
.thumbnail-panel-container[b-pbdiqkmjp0] {
    flex: 1 0 250px;
    min-width: 250px;
    max-width: 33.333%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-right: 1px solid var(--mud-palette-divider);
    padding-right: 16px;
}

/* Scrollable thumbnail area */
.thumbnail-panel-scroll[b-pbdiqkmjp0] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

/* Empty state for thumbnail area */
.thumbnail-empty-state[b-pbdiqkmjp0] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    padding: 24px;
}

/* Pinned drop zone at bottom */
.drop-zone-pinned[b-pbdiqkmjp0] {
    flex-shrink: 0;
    min-height: 100px;
}

.drop-zone-content[b-pbdiqkmjp0] {
    height: 100%;
    border: 2px dashed var(--mud-palette-divider);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.drop-zone-content:hover[b-pbdiqkmjp0] {
    border-color: var(--mud-palette-primary);
    background-color: var(--mud-palette-action-default-hover);
}

/* Right panel: Large preview */
.preview-panel[b-pbdiqkmjp0] {
    flex: 2 1 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.preview-content[b-pbdiqkmjp0] {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
}

/* Large preview display area */
.preview-display[b-pbdiqkmjp0] {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--mud-palette-background-grey);
    border-radius: 4px;
    overflow: hidden;
}

/* Empty state for preview panel */
.preview-empty-state[b-pbdiqkmjp0] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--mud-palette-background-grey);
    border-radius: 4px;
    padding: 48px;
}


/* Responsive adjustments for tablets */
@media (max-width: 960px) {
    .preview-layout[b-pbdiqkmjp0] {
        flex-direction: column;
        height: auto;
        max-height: none;
    }

    .thumbnail-panel-container[b-pbdiqkmjp0] {
        flex: 0 0 auto;
        max-width: none;
        min-width: 0;
        max-height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--mud-palette-divider);
        padding-right: 0;
        padding-bottom: 16px;
    }

    .drop-zone-pinned[b-pbdiqkmjp0] {
        min-height: 80px;
    }

    .preview-display[b-pbdiqkmjp0] {
        min-height: 300px;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .file-upload-modal-container[b-pbdiqkmjp0] {
        min-height: auto;
    }

    .preview-layout[b-pbdiqkmjp0] {
        gap: 12px;
    }

    .thumbnail-panel-container[b-pbdiqkmjp0] {
        max-height: 150px;
    }

    .drop-zone-pinned[b-pbdiqkmjp0] {
        min-height: 70px;
    }

    .preview-display[b-pbdiqkmjp0] {
        min-height: 250px;
    }

    .preview-empty-state[b-pbdiqkmjp0] {
        padding: 24px;
    }
}

/* Scrollbar styling for thumbnail panel scroll area */
.thumbnail-panel-scroll[b-pbdiqkmjp0]::-webkit-scrollbar {
    width: 6px;
}

.thumbnail-panel-scroll[b-pbdiqkmjp0]::-webkit-scrollbar-track {
    background-color: var(--mud-palette-background-grey);
}

.thumbnail-panel-scroll[b-pbdiqkmjp0]::-webkit-scrollbar-thumb {
    background-color: var(--mud-palette-divider);
    border-radius: 3px;
}

.thumbnail-panel-scroll[b-pbdiqkmjp0]::-webkit-scrollbar-thumb:hover {
    background-color: var(--mud-palette-text-secondary);
}
/* _content/AquiloRazorClassLibrary/Features/Documentable/HasDisplayPicture/DisplayPictureWizardUploadComponent.razor.rz.scp.css */
/* Display picture container with hover overlay - Desktop */
.display-picture-container[b-nk2lzrw111] {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.display-picture-container:hover[b-nk2lzrw111] {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.display-picture-overlay[b-nk2lzrw111] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 8px;
}

.display-picture-container:hover .display-picture-overlay[b-nk2lzrw111] {
    opacity: 1;
}
/* _content/AquiloRazorClassLibrary/Features/Documentable/Preview/FilePreviewThumbnailGridComponent.razor.rz.scp.css */
/* FilePreviewThumbnailGridComponent styles */

.thumbnail-grid-container[b-ikgg2pqf91] {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding: 8px;
}

.thumbnail-grid[b-ikgg2pqf91] {
    width: 100%;
}

/* Thumbnail styles */
.thumbnail[b-ikgg2pqf91] {
    position: relative;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
    cursor: pointer;
}

.thumbnail:hover[b-ikgg2pqf91] {
    transform: translateY(-2px);
}

.thumbnail--selected[b-ikgg2pqf91] {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 2px var(--mud-palette-primary);
}

.thumbnail--delete-target[b-ikgg2pqf91] {
    border-color: var(--mud-palette-error);
    animation: pulse-delete-b-ikgg2pqf91 0.5s ease-in-out infinite;
}

@keyframes pulse-delete-b-ikgg2pqf91 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Delete overlay */
.delete-overlay[b-ikgg2pqf91] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--mud-palette-error);
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: fade-in-b-ikgg2pqf91 0.2s ease-in-out;
}

.delete-overlay-icon[b-ikgg2pqf91] {
    color: var(--mud-palette-error-text);
    font-size: 48px !important;
}

@keyframes fade-in-b-ikgg2pqf91 {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.85;
    }
}

/* Hover remove button */
.thumbnail-remove-button[b-ikgg2pqf91] {
    position: absolute;
    top: 4px;
    right: 4px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 5;
    background-color: var(--mud-palette-surface);
    border-radius: 50%;
}

.thumbnail:hover .thumbnail-remove-button[b-ikgg2pqf91] {
    opacity: 1;
}

/* File name overlay */
.thumbnail-filename[b-ikgg2pqf91] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--mud-palette-surface), transparent);
    padding: 8px 4px 4px 4px;
}

.thumbnail-filename .mud-typography[b-ikgg2pqf91] {
    color: var(--mud-palette-text-primary);
}

/* Add files button */
.add-files-grid-button[b-ikgg2pqf91] {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 2px dashed var(--mud-palette-divider);
    background-color: var(--mud-palette-background-grey);
}

.add-files-grid-button:hover[b-ikgg2pqf91] {
    border-color: var(--mud-palette-primary);
    background-color: var(--mud-palette-action-default-hover);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .thumbnail-grid-container[b-ikgg2pqf91] {
        padding: 4px;
    }

    .thumbnail-filename[b-ikgg2pqf91] {
        font-size: 0.7rem;
    }

    .thumbnail-remove-button[b-ikgg2pqf91] {
        opacity: 1; /* Always visible on mobile */
    }
}

/* Scrollbar styling */
.thumbnail-grid-container[b-ikgg2pqf91]::-webkit-scrollbar {
    width: 8px;
}

.thumbnail-grid-container[b-ikgg2pqf91]::-webkit-scrollbar-track {
    background-color: var(--mud-palette-background-grey);
}

.thumbnail-grid-container[b-ikgg2pqf91]::-webkit-scrollbar-thumb {
    background-color: var(--mud-palette-divider);
    border-radius: 4px;
}

.thumbnail-grid-container[b-ikgg2pqf91]::-webkit-scrollbar-thumb:hover {
    background-color: var(--mud-palette-text-secondary);
}
/* _content/AquiloRazorClassLibrary/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-p0cn90gk7j] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.oi[b-p0cn90gk7j] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

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

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

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

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

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

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

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

    .collapse[b-p0cn90gk7j] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/AquiloRazorClassLibrary/Systems/Wizard/WizardStep.razor.rz.scp.css */
/* Wizard Step Wrapper */
.wizard-step-wrapper[b-1y0na07cjz] {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Step Header */
.wizard-step-header[b-1y0na07cjz] {
    padding: 1rem 2rem 0.75rem;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    margin: -2rem -2rem 1rem -2rem;
    position: sticky;
    top: -2rem;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.wizard-step-header .mud-typography-body2[b-1y0na07cjz] {
    font-size: 0.875rem;
    line-height: 1.5;
}

.wizard-step-header strong[b-1y0na07cjz] {
    font-weight: 600;
}

/* Step Content */
.wizard-step-content[b-1y0na07cjz] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for Step Content */
.wizard-step-content[b-1y0na07cjz]::-webkit-scrollbar {
    width: 6px;
}

.wizard-step-content[b-1y0na07cjz]::-webkit-scrollbar-track {
    background: transparent;
}

.wizard-step-content[b-1y0na07cjz]::-webkit-scrollbar-thumb {
    background: var(--mud-palette-lines-default);
    border-radius: 10px;
}

.wizard-step-content[b-1y0na07cjz]::-webkit-scrollbar-thumb:hover {
    background: var(--mud-palette-text-secondary);
}

/* Form Styling - default natural height */
.wizard-form[b-1y0na07cjz] {
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* When form should expand to full height */
.wizard-form.expand-form[b-1y0na07cjz] {
    height: 100%;
}

.wizard-form .mud-grid[b-1y0na07cjz] {
    margin: 0;
}

/* When form is set to expand */
.wizard-form.expand-form .mud-grid[b-1y0na07cjz] {
    flex: 1;
    height: 100%;
}

.wizard-form .mud-grid-item[b-1y0na07cjz] {
    padding: 0.75rem 0.75rem 0 0.75rem; /* top, right, bottom, left - removed bottom padding */
}

/* Form Field Enhancements */
.wizard-form .mud-input-control[b-1y0na07cjz] {
    margin-top: 0.5rem;
}

.wizard-form .mud-input-label[b-1y0na07cjz] {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.wizard-form .mud-input-outlined .mud-input-outlined-border[b-1y0na07cjz] {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.wizard-form .mud-input-outlined:hover .mud-input-outlined-border[b-1y0na07cjz] {
    border-color: var(--mud-palette-text-secondary);
}

.wizard-form .mud-input-outlined.mud-focused .mud-input-outlined-border[b-1y0na07cjz] {
    border-width: 2px;
}


/* Error State */
.wizard-step-header .mud-typography-h6.mud-error-text[b-1y0na07cjz] {
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    animation: shake-b-1y0na07cjz 0.3s ease;
}

@keyframes shake-b-1y0na07cjz {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Step Transition */
.wizard-step-wrapper[b-1y0na07cjz] {
    opacity: 0;
    animation: fadeInUp-b-1y0na07cjz 0.3s ease forwards;
}

@keyframes fadeInUp-b-1y0na07cjz {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wizard-step-header[b-1y0na07cjz] {
        padding: 1rem;
        margin: -1rem -1rem 1rem -1rem;
        top: -1rem;
    }
    
    .wizard-form .mud-grid-item[b-1y0na07cjz] {
        padding: 0.5rem 0.5rem 0 0.5rem; /* top, right, bottom, left - removed bottom padding */
    }
}

/* Form Group Spacing */
.wizard-form .form-section[b-1y0na07cjz] {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--mud-palette-lines-default);
}

.wizard-form .form-section-title[b-1y0na07cjz] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Wizard step expansion item - works for both desktop and mobile */
.wizard-step-expansion-item[b-1y0na07cjz] {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    padding-right: 8px !important; /* Compensate for missing MudGrid right padding */
}
