/* /Components/Apps/ImageViewer.razor.rz.scp.css */
/* Image Viewer - Windows 11 Photos App Style */
.image-viewer[b-nodshmy3ud] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #000;
}

.image-toolbar[b-nodshmy3ud] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: rgba(32, 32, 32, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toolbar-icon-btn[b-nodshmy3ud] {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.1s ease;
}

.toolbar-icon-btn:hover[b-nodshmy3ud] {
    background: rgba(255, 255, 255, 0.1);
}

.toolbar-icon-btn:active[b-nodshmy3ud] {
    background: rgba(255, 255, 255, 0.2);
}

.toolbar-separator[b-nodshmy3ud] {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 4px;
}

.zoom-level[b-nodshmy3ud] {
    color: #fff;
    font-size: 12px;
    min-width: 45px;
    text-align: center;
}

.image-container[b-nodshmy3ud] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.image-container img[b-nodshmy3ud] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
}

.loading-message[b-nodshmy3ud] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
/* /Components/Apps/MediaPlayer.razor.rz.scp.css */
/* Windows 11 Media Player Style */
.media-player[b-9ptcuo3hp6] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000000;
    overflow: hidden;
}

/* Video Player Styles */
.media-container[b-9ptcuo3hp6] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.media-container video[b-9ptcuo3hp6] {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

/* Audio Player Styles */
.audio-player-container[b-9ptcuo3hp6] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Blurred background from cover art */
.audio-background[b-9ptcuo3hp6] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(50px) brightness(0.6);
    -webkit-filter: blur(50px) brightness(0.6);
    transform: scale(1.2);
    z-index: 0;
}

.audio-background-default[b-9ptcuo3hp6] {
    background: linear-gradient(135deg,
        #667eea 0%,
        #764ba2 25%,
        #f093fb 50%,
        #4facfe 75%,
        #00f2fe 100%);
    filter: blur(50px) brightness(0.6);
    -webkit-filter: blur(50px) brightness(0.6);
    transform: scale(1.2);
}

.audio-artwork-section[b-9ptcuo3hp6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 20px;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.audio-cover[b-9ptcuo3hp6] {
    width: min(320px, 60%);
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.cover-image[b-9ptcuo3hp6] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audio-cover i[b-9ptcuo3hp6] {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.audio-info[b-9ptcuo3hp6] {
    text-align: center;
    max-width: 90%;
}

.audio-title[b-9ptcuo3hp6] {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.audio-artist[b-9ptcuo3hp6] {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Segoe UI', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.audio-album[b-9ptcuo3hp6] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Segoe UI', sans-serif;
    margin-top: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.audio-controls-section[b-9ptcuo3hp6] {
    flex-shrink: 0;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.audio-controls-section audio[b-9ptcuo3hp6] {
    display: block;
    width: 100%;
}

/* Loading Message */
.loading-message[b-9ptcuo3hp6] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    margin: auto;
}
/* /Components/Apps/PdfViewer.razor.rz.scp.css */
/* PDF Viewer - Windows 11 Style */
.pdf-viewer[b-6vvkzxeirg] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f5f5f5;
}

/* Menu Bar */
.pdf-menubar[b-6vvkzxeirg] {
    display: flex;
    align-items: center;
    background: #f3f3f3;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 4px;
    height: 28px;
    font-family: 'Segoe UI', sans-serif;
}

.menu-item[b-6vvkzxeirg] {
    position: relative;
    padding: 4px 10px;
    font-size: 12px;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 4px;
}

.menu-item:hover[b-6vvkzxeirg] {
    background: #e5e5e5;
}

.menu-dropdown[b-6vvkzxeirg] {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 4px 0;
    z-index: 1000;
}

.menu-dropdown-item[b-6vvkzxeirg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: #1a1a1a;
    font-size: 12px;
    cursor: pointer;
    text-align: left;
}

.menu-dropdown-item:hover:not(:disabled)[b-6vvkzxeirg] {
    background: #e5f1fb;
}

.menu-dropdown-item:disabled[b-6vvkzxeirg] {
    color: #999;
    cursor: not-allowed;
}

.menu-shortcut-label[b-6vvkzxeirg] {
    flex: 1;
}

.menu-shortcut[b-6vvkzxeirg] {
    color: #666;
    font-size: 11px;
    margin-left: 20px;
}

.menu-arrow[b-6vvkzxeirg] {
    font-size: 10px;
    color: #666;
}

.menu-separator[b-6vvkzxeirg] {
    height: 1px;
    background: #e5e5e5;
    margin: 4px 0;
}

/* Toolbar - Light Theme */
.pdf-toolbar[b-6vvkzxeirg] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.toolbar-btn[b-6vvkzxeirg] {
    background: transparent;
    border: 1px solid transparent;
    color: #444;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolbar-btn:hover:not(:disabled)[b-6vvkzxeirg] {
    background: #f0f0f0;
    border-color: #d1d1d1;
}

.toolbar-btn:active:not(:disabled)[b-6vvkzxeirg] {
    background: #e5e5e5;
}

.toolbar-btn:disabled[b-6vvkzxeirg] {
    opacity: 0.4;
    cursor: not-allowed;
}

.toolbar-btn.active[b-6vvkzxeirg] {
    background: #e5f1fb;
    border-color: #0078d4;
    color: #0078d4;
}

.toolbar-separator[b-6vvkzxeirg] {
    width: 1px;
    height: 24px;
    background: #e5e5e5;
    margin: 0 6px;
}

/* Page Input Group */
.page-input-group[b-6vvkzxeirg] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 4px;
}

.page-input[b-6vvkzxeirg] {
    width: 50px;
    height: 26px;
    padding: 0 6px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 13px;
    text-align: center;
    -moz-appearance: textfield;
}

.page-input[b-6vvkzxeirg]::-webkit-outer-spin-button,
.page-input[b-6vvkzxeirg]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.page-input:focus[b-6vvkzxeirg] {
    outline: none;
    border-color: #0078d4;
}

.page-input:disabled[b-6vvkzxeirg] {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.page-total[b-6vvkzxeirg] {
    color: #666;
    font-size: 13px;
    font-family: 'Segoe UI', sans-serif;
}

/* Zoom Level */
.zoom-level[b-6vvkzxeirg] {
    color: #444;
    font-size: 12px;
    font-family: 'Segoe UI', sans-serif;
    min-width: 45px;
    text-align: center;
}

/* Content Wrapper */
.pdf-content-wrapper[b-6vvkzxeirg] {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* Sidebar */
.pdf-sidebar[b-6vvkzxeirg] {
    width: 160px;
    background: #f9f9f9;
    border-right: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sidebar-header[b-6vvkzxeirg] {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    background: #f3f3f3;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar-pages[b-6vvkzxeirg] {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.sidebar-page-item[b-6vvkzxeirg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    margin-bottom: 8px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
}

.sidebar-page-item:hover[b-6vvkzxeirg] {
    background: #f0f0f0;
}

.sidebar-page-item.active[b-6vvkzxeirg] {
    border-color: #0078d4;
    background: #e5f1fb;
}

.page-thumbnail[b-6vvkzxeirg] {
    width: 100%;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-canvas[b-6vvkzxeirg] {
    max-width: 100%;
    height: auto;
}

.page-number[b-6vvkzxeirg] {
    margin-top: 6px;
    font-size: 11px;
    color: #666;
}

.sidebar-page-item.active .page-number[b-6vvkzxeirg] {
    color: #0078d4;
    font-weight: 600;
}

/* Content Area */
.pdf-canvas-container[b-6vvkzxeirg] {
    flex: 1;
    overflow: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    background: #e8e8e8;
}

.pdf-canvas-container canvas[b-6vvkzxeirg] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: white;
}

/* Loading State */
.loading-state[b-6vvkzxeirg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    gap: 16px;
}

.loading-spinner[b-6vvkzxeirg] {
    width: 40px;
    height: 40px;
    border: 4px solid #d1d1d1;
    border-top-color: #0078d4;
    border-radius: 50%;
    animation: spin-b-6vvkzxeirg 0.8s linear infinite;
}

@keyframes spin-b-6vvkzxeirg {
    to { transform: rotate(360deg); }
}

/* Error State */
.error-state[b-6vvkzxeirg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    gap: 16px;
}

.error-state i[b-6vvkzxeirg] {
    font-size: 48px;
    color: #dc3545;
}

.retry-btn[b-6vvkzxeirg] {
    padding: 8px 24px;
    background: #0078d4;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.retry-btn:hover[b-6vvkzxeirg] {
    background: #106ebe;
}

/* Empty State */
.empty-state[b-6vvkzxeirg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    gap: 16px;
}

.empty-state i[b-6vvkzxeirg] {
    font-size: 64px;
    color: #bbb;
}

.open-btn[b-6vvkzxeirg] {
    padding: 10px 32px;
    background: #0078d4;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.open-btn:hover[b-6vvkzxeirg] {
    background: #106ebe;
}

/* About Dialog */
.about-overlay[b-6vvkzxeirg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.about-dialog[b-6vvkzxeirg] {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 360px;
    overflow: hidden;
}

.about-header[b-6vvkzxeirg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
}

.about-icon[b-6vvkzxeirg] {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
}

.about-header h2[b-6vvkzxeirg] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.about-content[b-6vvkzxeirg] {
    padding: 20px 24px;
    text-align: center;
}

.about-content p[b-6vvkzxeirg] {
    margin: 8px 0;
    font-size: 13px;
    color: #444;
}

.about-copyright[b-6vvkzxeirg] {
    margin-top: 16px !important;
    color: #888 !important;
    font-size: 12px !important;
}

.about-footer[b-6vvkzxeirg] {
    display: flex;
    justify-content: center;
    padding: 16px;
    background: #f3f3f3;
    border-top: 1px solid #e5e5e5;
}

.about-close-btn[b-6vvkzxeirg] {
    padding: 8px 32px;
    background: #0078d4;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.about-close-btn:hover[b-6vvkzxeirg] {
    background: #106ebe;
}
/* /Components/Apps/TextViewer.razor.rz.scp.css */
/* Notepad - Windows 11 Style (content only, title bar handled by TabbedDesktopWindow) */
.notepad[b-7ojxirxc6b] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    outline: none;
}

/* Menu Bar */
.notepad-menubar[b-7ojxirxc6b] {
    display: flex;
    align-items: center;
    height: 32px;
    padding: 0 4px;
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.menu-item[b-7ojxirxc6b] {
    position: relative;
    padding: 4px 12px;
    font-size: 12px;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.1s ease;
}

.menu-item:hover[b-7ojxirxc6b] {
    background: rgba(0, 0, 0, 0.04);
}

.menu-dropdown[b-7ojxirxc6b] {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
    padding: 4px;
    z-index: 1000;
    margin-top: 2px;
}

.menu-dropdown-item[b-7ojxirxc6b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    font-size: 12px;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 4px;
    text-align: left;
    transition: background 0.1s ease;
}

.menu-dropdown-item:hover:not(:disabled)[b-7ojxirxc6b] {
    background: rgba(0, 0, 0, 0.04);
}

.menu-dropdown-item:disabled[b-7ojxirxc6b] {
    color: #a0a0a0;
    cursor: default;
}

.menu-dropdown-item.toggle-item[b-7ojxirxc6b] {
    justify-content: flex-start;
    gap: 8px;
}

.menu-dropdown-item.toggle-item i[b-7ojxirxc6b] {
    width: 14px;
    font-size: 10px;
    color: #1a1a1a;
}

.menu-label[b-7ojxirxc6b] {
    flex: 1;
}

.menu-shortcut[b-7ojxirxc6b] {
    color: #666;
    font-size: 11px;
    margin-left: 24px;
}

.menu-separator[b-7ojxirxc6b] {
    height: 1px;
    background: #e5e5e5;
    margin: 4px 8px;
}

/* Find/Replace Panel - Inline Style */
.find-panel[b-7ojxirxc6b] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 12px;
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.find-panel-row[b-7ojxirxc6b] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.find-input[b-7ojxirxc6b] {
    flex: 1;
    min-width: 120px;
    max-width: 200px;
    padding: 6px 10px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 13px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.1s ease;
}

.find-input:focus[b-7ojxirxc6b] {
    border-color: #0078d4;
}

.find-input[b-7ojxirxc6b]::placeholder {
    color: #999;
}

.find-panel-btn[b-7ojxirxc6b] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    font-size: 12px;
    transition: all 0.1s ease;
}

.find-panel-btn:hover:not(:disabled)[b-7ojxirxc6b] {
    background: rgba(0, 0, 0, 0.04);
    color: #1a1a1a;
}

.find-panel-btn:disabled[b-7ojxirxc6b] {
    opacity: 0.4;
    cursor: default;
}

.find-panel-btn.toggle[b-7ojxirxc6b] {
    font-weight: 600;
    font-size: 11px;
}

.find-panel-btn.toggle.active[b-7ojxirxc6b] {
    background: #0078d4;
    color: #fff;
    border-color: #0078d4;
}

.find-panel-close[b-7ojxirxc6b] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    font-size: 12px;
    transition: all 0.1s ease;
    margin-left: 4px;
}

.find-panel-close:hover[b-7ojxirxc6b] {
    background: rgba(0, 0, 0, 0.04);
    color: #1a1a1a;
}

.find-results[b-7ojxirxc6b] {
    font-size: 11px;
    color: #666;
    padding-left: 2px;
}

.find-results .no-results[b-7ojxirxc6b] {
    color: #c42b1c;
}

/* Editor Area */
.notepad-editor[b-7ojxirxc6b] {
    flex: 1;
    display: flex;
    min-height: 0;
    background: #fff;
}

.editor-textarea[b-7ojxirxc6b] {
    width: 100%;
    height: 100%;
    padding: 16px 20px;
    border: none;
    outline: none;
    resize: none;
    font-family: 'Consolas', 'Cascadia Code', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    white-space: pre;
    overflow: auto;
}

.editor-textarea.word-wrap[b-7ojxirxc6b] {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.editor-textarea[b-7ojxirxc6b]::selection {
    background: #0078d4;
    color: #fff;
}

.editor-textarea[b-7ojxirxc6b]::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

.editor-textarea[b-7ojxirxc6b]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.editor-textarea[b-7ojxirxc6b]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 7px;
    border: 3px solid #f1f1f1;
}

.editor-textarea[b-7ojxirxc6b]::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Loading & Error States */
.loading-state[b-7ojxirxc6b],
.error-state[b-7ojxirxc6b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 16px;
    color: #666;
    font-size: 14px;
}

.loading-spinner[b-7ojxirxc6b] {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e5e5;
    border-top-color: #0078d4;
    border-radius: 50%;
    animation: spin-b-7ojxirxc6b 0.8s linear infinite;
}

@keyframes spin-b-7ojxirxc6b {
    to { transform: rotate(360deg); }
}

.error-state[b-7ojxirxc6b] {
    color: #c42b1c;
}

.error-state i[b-7ojxirxc6b] {
    font-size: 32px;
}

/* Status Bar */
.notepad-statusbar[b-7ojxirxc6b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 24px;
    padding: 0 12px;
    background: #f9f9f9;
    border-top: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.status-left[b-7ojxirxc6b],
.status-right[b-7ojxirxc6b] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-item[b-7ojxirxc6b] {
    font-size: 11px;
    color: #666;
}

/* Dialog Overlay */
.dialog-overlay[b-7ojxirxc6b] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

/* Go To Dialog */
.goto-dialog[b-7ojxirxc6b] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 320px;
}

.dialog-header[b-7ojxirxc6b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.dialog-header span[b-7ojxirxc6b] {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.dialog-close[b-7ojxirxc6b] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    transition: all 0.1s ease;
}

.dialog-close:hover[b-7ojxirxc6b] {
    background: rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
}

.dialog-content[b-7ojxirxc6b] {
    padding: 20px;
}

.form-group[b-7ojxirxc6b] {
    margin-bottom: 16px;
}

.form-group:last-child[b-7ojxirxc6b] {
    margin-bottom: 0;
}

.form-group label[b-7ojxirxc6b] {
    display: block;
    font-size: 12px;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.form-group input[type="text"][b-7ojxirxc6b],
.form-group input[type="number"][b-7ojxirxc6b] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 13px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.1s ease;
}

.form-group input[type="text"]:focus[b-7ojxirxc6b],
.form-group input[type="number"]:focus[b-7ojxirxc6b] {
    border-color: #0078d4;
}

.dialog-actions[b-7ojxirxc6b] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid #e5e5e5;
}

.btn[b-7ojxirxc6b] {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.1s ease;
}

.btn:hover:not(:disabled)[b-7ojxirxc6b] {
    background: #f5f5f5;
}

.btn:disabled[b-7ojxirxc6b] {
    opacity: 0.5;
    cursor: default;
}

.btn-primary[b-7ojxirxc6b] {
    background: #0078d4;
    border-color: #0078d4;
    color: #fff;
}

.btn-primary:hover:not(:disabled)[b-7ojxirxc6b] {
    background: #106ebe;
    border-color: #106ebe;
}

/* About Dialog */
.about-dialog[b-7ojxirxc6b] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 340px;
    text-align: center;
}

.about-header[b-7ojxirxc6b] {
    padding: 32px 24px 16px;
}

.about-icon[b-7ojxirxc6b] {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.about-header h2[b-7ojxirxc6b] {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.about-content[b-7ojxirxc6b] {
    padding: 0 24px 24px;
}

.about-content p[b-7ojxirxc6b] {
    font-size: 13px;
    color: #666;
    margin: 8px 0;
}

.about-copyright[b-7ojxirxc6b] {
    margin-top: 16px !important;
    font-size: 11px !important;
    color: #999 !important;
}

.about-footer[b-7ojxirxc6b] {
    padding: 16px 24px;
    border-top: 1px solid #e5e5e5;
}

.about-footer .btn[b-7ojxirxc6b] {
    min-width: 100px;
}
/* /Components/Dialog/DeleteConfirmDialog.razor.rz.scp.css */
/* Dialog container */
.delete-dialog[b-hnoo0rhiwy] {
    max-width: 420px;
}

/* Modal content */
.delete-modal-content[b-hnoo0rhiwy] {
    border-radius: 8px;
    border: 1px solid #007acc;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Header */
.delete-modal-header[b-hnoo0rhiwy] {
    border-bottom: 1px solid #e0e0e0;
    padding: 0px;
    padding-left: 12px;
    background: #e5f1fb;
    cursor: move;
    border-radius: 7px 7px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delete-modal-title[b-hnoo0rhiwy] {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

/* Close button */
.delete-close-btn[b-hnoo0rhiwy] {
    width: 34px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
}

.delete-close-btn svg[b-hnoo0rhiwy] {
    fill: rgba(0, 0, 0, 0.9);
    transition: fill 0.1s ease;
}

/* Close button hover effects matching Explorer window */
.delete-modal-header .window-control-btn:hover[b-hnoo0rhiwy] {
    background: rgba(0, 0, 0, 0.06);
}

.delete-modal-header .window-control-btn:active[b-hnoo0rhiwy] {
    background: rgba(0, 0, 0, 0.04);
}

.delete-modal-header .window-control-btn.close:hover[b-hnoo0rhiwy] {
    background: #c42b1c;
}

.delete-modal-header .window-control-btn.close:hover svg[b-hnoo0rhiwy] {
    fill: #fff;
}

.delete-modal-header .window-control-btn.close:active[b-hnoo0rhiwy] {
    background: #a52313;
}

.delete-modal-header .window-control-btn.close:active svg[b-hnoo0rhiwy] {
    fill: #fff;
}

/* Body */
.delete-modal-body[b-hnoo0rhiwy] {
    padding: 16px;
    background: #f0f0f0;
}

/* Layout containers */
.delete-layout[b-hnoo0rhiwy] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.delete-icon-container[b-hnoo0rhiwy] {
    flex-shrink: 0;
    padding-top: 4px;
}

.delete-icon[b-hnoo0rhiwy] {
    width: 32px;
    height: 32px;
}

.delete-content[b-hnoo0rhiwy] {
    flex: 1;
    min-width: 0;
}

.delete-content-full[b-hnoo0rhiwy] {
    flex: 1;
}

/* Message text */
.delete-message[b-hnoo0rhiwy] {
    margin: 0 0 12px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #000;
}

.delete-message-multi[b-hnoo0rhiwy] {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #000;
}

/* File info box */
.file-info-box[b-hnoo0rhiwy] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    background: #f0f0f0;
}

.file-thumbnail-container[b-hnoo0rhiwy] {
    flex-shrink: 0;
}

.file-thumbnail[b-hnoo0rhiwy] {
    width: 48px;
    height: 48px;
}

.file-thumbnail-cover[b-hnoo0rhiwy] {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

/* File details */
.file-details[b-hnoo0rhiwy] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.file-name[b-hnoo0rhiwy] {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.file-info-text[b-hnoo0rhiwy] {
    font-size: 11px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-info-size[b-hnoo0rhiwy] {
    font-size: 11px;
    color: #666;
}

/* Footer */
.delete-modal-footer[b-hnoo0rhiwy] {
    border-top: none;
    padding: 8px 12px;
    background: #f0f0f0;
    justify-content: flex-end;
    gap: 6px;
    border-radius: 0 0 7px 7px;
}

/* Footer buttons */
.delete-btn[b-hnoo0rhiwy] {
    min-width: 75px;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 400;
    background: #f0f0f0;
    color: #000;
    border: 1px solid #adadad;
    border-radius: 3px;
    cursor: pointer;
    height: 23px;
    transition: background 0.1s ease, border-color 0.1s ease;
}

.delete-btn:hover[b-hnoo0rhiwy] {
    background: #e5f1fb;
    border-color: #0078d4;
}
/* /Components/Dialog/DownloadConfirmDialog.razor.rz.scp.css */
/* Download Confirmation Dialog - Windows 11 Style */

/* Dialog container */
.download-dialog[b-4ztta1znf7] {
    max-width: 420px;
}

/* Modal content */
.download-modal-content[b-4ztta1znf7] {
    border-radius: 8px;
    border: 1px solid #007acc;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Header */
.download-modal-header[b-4ztta1znf7] {
    border-bottom: 1px solid #e0e0e0;
    padding: 0px;
    padding-left: 12px;
    background: #e5f1fb;
    border-radius: 7px 7px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-modal-title[b-4ztta1znf7] {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

/* Close button */
.download-close-btn[b-4ztta1znf7] {
    width: 34px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
}

.download-close-btn svg[b-4ztta1znf7] {
    fill: rgba(0, 0, 0, 0.9);
    transition: fill 0.1s ease;
}

.download-modal-header .window-control-btn:hover[b-4ztta1znf7] {
    background: rgba(0, 0, 0, 0.06);
}

.download-modal-header .window-control-btn.close:hover[b-4ztta1znf7] {
    background: #c42b1c;
}

.download-modal-header .window-control-btn.close:hover svg[b-4ztta1znf7] {
    fill: #fff;
}

/* Body */
.download-modal-body[b-4ztta1znf7] {
    padding: 16px;
    background: #f0f0f0;
}

.download-layout[b-4ztta1znf7] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.download-icon-container[b-4ztta1znf7] {
    flex-shrink: 0;
    padding-top: 4px;
}

.download-icon[b-4ztta1znf7] {
    width: 32px;
    height: 32px;
}

.download-content[b-4ztta1znf7] {
    flex: 1;
    min-width: 0;
}

.download-message[b-4ztta1znf7] {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #000;
}

.download-question[b-4ztta1znf7] {
    margin: 0 0 12px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #000;
    font-weight: 500;
}

/* File info box */
.file-info-box[b-4ztta1znf7] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    background: #f0f0f0;
}

.file-thumbnail-container[b-4ztta1znf7] {
    flex-shrink: 0;
}

.file-thumbnail[b-4ztta1znf7] {
    width: 48px;
    height: 48px;
}

.file-details[b-4ztta1znf7] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.file-name[b-4ztta1znf7] {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.file-info-text[b-4ztta1znf7] {
    font-size: 11px;
    color: #666;
}

.file-info-size[b-4ztta1znf7] {
    font-size: 11px;
    color: #666;
}

/* Footer */
.download-modal-footer[b-4ztta1znf7] {
    border-top: none;
    padding: 8px 12px;
    background: #f0f0f0;
    justify-content: flex-end;
    gap: 6px;
    border-radius: 0 0 7px 7px;
}

/* Footer buttons */
.download-btn[b-4ztta1znf7] {
    min-width: 75px;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 400;
    background: #f0f0f0;
    color: #000;
    border: 1px solid #adadad;
    border-radius: 3px;
    cursor: pointer;
    height: 23px;
    transition: background 0.1s ease, border-color 0.1s ease;
}

.download-btn:hover[b-4ztta1znf7] {
    background: #e5f1fb;
    border-color: #0078d4;
}
/* /Components/Dialog/OpenFileDialog.razor.rz.scp.css */
/* Open File Dialog - Windows 11 Style (matching delete dialog) */
.open-dialog-overlay[b-8wrukhsgux] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s, visibility 0.15s;
}

    .open-dialog-overlay.visible[b-8wrukhsgux] {
        opacity: 1;
        visibility: visible;
    }

.open-dialog[b-8wrukhsgux] {
    width: 800px;
    height: 520px;
    background: #f0f0f0;
    border-radius: 8px;
    border: 1px solid #007acc;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

/* Title Bar - matching delete dialog */
.open-dialog-titlebar[b-8wrukhsgux] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    padding-left: 12px;
    background: #e5f1fb;
    border-bottom: 1px solid #e0e0e0;
    height: 32px;
    border-radius: 7px 7px 0 0;
}

.dialog-title[b-8wrukhsgux] {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

/* Close button - matching delete dialog */
.window-control-btn[b-8wrukhsgux] {
    width: 46px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
}

    .window-control-btn svg[b-8wrukhsgux] {
        fill: rgba(0, 0, 0, 0.9);
        transition: fill 0.1s ease;
    }

    .window-control-btn:hover[b-8wrukhsgux] {
        background: rgba(0, 0, 0, 0.06);
    }

    .window-control-btn:active[b-8wrukhsgux] {
        background: rgba(0, 0, 0, 0.04);
    }

    .window-control-btn.close:hover[b-8wrukhsgux] {
        background: #c42b1c;
    }

        .window-control-btn.close:hover svg[b-8wrukhsgux] {
            fill: #fff;
        }

    .window-control-btn.close:active[b-8wrukhsgux] {
        background: #a52313;
    }

        .window-control-btn.close:active svg[b-8wrukhsgux] {
            fill: #fff;
        }

/* Override NavigationBar styles for dialog */
[b-8wrukhsgux] .open-dialog-nav {
    padding: 8px 12px;
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
}

    [b-8wrukhsgux] .open-dialog-nav .navbar-breadcrumb {
        flex: 1;
    }

/* Main Content Area */
.open-dialog-main[b-8wrukhsgux] {
    flex: 1;
    display: flex;
    overflow: hidden;
    margin: 0 12px;
    gap: 0;
}

    /* Override FolderTreeSidebar styles for dialog */
    .open-dialog-main[b-8wrukhsgux]  .explorer-sidebar {
        width: 180px;
        min-width: 180px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-right: none;
        border-radius: 0;
    }

/* Content Area */
.open-dialog-content[b-8wrukhsgux] {
    flex: 1;
    overflow: auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.loading-state[b-8wrukhsgux],
.empty-state[b-8wrukhsgux] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    gap: 12px;
}

    .empty-state i[b-8wrukhsgux] {
        font-size: 48px;
        color: #ccc;
    }

.loading-spinner[b-8wrukhsgux] {
    width: 24px;
    height: 24px;
    border: 3px solid #e5e5e5;
    border-top-color: #0078d4;
    border-radius: 50%;
    animation: spin-b-8wrukhsgux 0.8s linear infinite;
}

@keyframes spin-b-8wrukhsgux {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.open-dialog-footer[b-8wrukhsgux] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: #f0f0f0;
    border-radius: 0 0 7px 7px;
    position: relative;
    overflow: visible;
}

.footer-row[b-8wrukhsgux] {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-row:last-child[b-8wrukhsgux] {
        justify-content: flex-end;
    }

.file-name-input[b-8wrukhsgux] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

    .file-name-input label[b-8wrukhsgux] {
        font-size: 12px;
        color: #000;
        min-width: 70px;
        white-space: nowrap;
    }

.autocomplete-container[b-8wrukhsgux] {
    position: relative;
    flex: 1;
}

.file-name-input input[b-8wrukhsgux] {
    width: 100%;
    height: 26px;
    padding: 0 8px;
    border: 1px solid #adadad;
    border-radius: 3px;
    font-size: 12px;
    background: #ffffff;
    color: #000;
    box-sizing: border-box;
}

    .file-name-input input:focus[b-8wrukhsgux] {
        outline: none;
        border-color: #0078d4;
    }

    .file-name-input input[b-8wrukhsgux]::placeholder {
        color: #999;
    }

/* Autocomplete dropdown */
.autocomplete-dropdown[b-8wrukhsgux] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #adadad;
    border-top: none;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 10001;
}

.autocomplete-item[b-8wrukhsgux] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 12px;
    color: #000;
}

    .autocomplete-item:hover[b-8wrukhsgux],
    .autocomplete-item.highlighted[b-8wrukhsgux] {
        background: #e5f1fb;
    }

.suggestion-icon[b-8wrukhsgux] {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.file-type-filter[b-8wrukhsgux] {
    display: flex;
    align-items: center;
}

    .file-type-filter select[b-8wrukhsgux] {
        /* Width = 2 buttons (80px each) + gap (6px) = 166px */
        width: 166px;
        height: 26px;
        padding: 0 8px;
        border: 1px solid #adadad;
        border-radius: 3px;
        font-size: 12px;
        background: #ffffff;
        color: #000;
    }

        .file-type-filter select:focus[b-8wrukhsgux] {
            outline: none;
            border-color: #0078d4;
        }

/* Dialog buttons - matching delete dialog */
.dialog-buttons[b-8wrukhsgux] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.dialog-btn[b-8wrukhsgux] {
    min-width: 80px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 400;
    background: #f0f0f0;
    color: #000;
    border: 1px solid #adadad;
    border-radius: 3px;
    cursor: pointer;
    height: 26px;
    line-height: 24px;
    transition: background 0.1s ease, border-color 0.1s ease;
}

    .dialog-btn:hover:not(:disabled)[b-8wrukhsgux] {
        background: #e5f1fb;
        border-color: #0078d4;
    }

    .dialog-btn:disabled[b-8wrukhsgux] {
        opacity: 0.5;
        cursor: not-allowed;
    }
