/* Help模板样式 */
:root {
    --help-primary: #7c3aed;
    --help-primary-dark: #6d28d9;
    --help-text: #1f2937;
    --help-text-secondary: #6b7280;
    --help-bg: #ffffff;
    --help-bg-light: #f9fafb;
    --help-border: #e5e7eb;
    --help-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --help-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--help-text);
    background: var(--help-bg-light);
    line-height: 1.6;
}

/* 顶部横幅 */
.help-top-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 0;
    position: relative;
}

.help-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.help-banner-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.help-banner-close {
    position: absolute;
    right: 1rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.help-banner-close:hover {
    opacity: 1;
}

/* 主导航栏 */
.help-header {
    background: white;
    box-shadow: var(--help-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.help-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.help-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--help-text);
}

.help-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.help-nav-link {
    color: var(--help-text);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.help-nav-link:hover {
    color: var(--help-primary);
}

.help-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* 模板切换器 */
.help-template-switcher {
    position: relative;
}

.help-template-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--help-bg);
    border: 1px solid var(--help-border);
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--help-text);
    transition: all 0.2s;
}

.help-template-btn:hover {
    border-color: var(--help-primary);
    color: var(--help-primary);
}

.help-template-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--help-bg);
    border: 1px solid var(--help-border);
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    display: none;
    z-index: 1000;
}

.help-template-dropdown.show {
    display: block;
}

.help-template-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--help-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.help-template-option:hover {
    background: var(--help-bg-light);
    color: var(--help-primary);
}

.help-template-option.active {
    background: var(--help-bg-light);
    color: var(--help-primary);
    font-weight: 500;
}

.help-template-option i {
    width: 16px;
    text-align: center;
}

.help-lang-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--help-border);
    border-radius: 0.375rem;
    background: white;
    color: var(--help-text);
    font-size: 0.875rem;
    cursor: pointer;
}

.help-login-btn {
    color: var(--help-text);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

.help-register-btn {
    background: var(--help-primary);
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: background 0.2s;
}

.help-register-btn:hover {
    background: var(--help-primary-dark);
}

/* 主容器 */
.help-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

/* 左侧导航栏 */
.help-sidebar {
    width: 240px;
    background: var(--help-bg-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.help-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-sidebar-item {
    color: var(--help-text);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.help-sidebar-item:hover {
    background: white;
    color: var(--help-primary);
}

.help-sidebar-active {
    background: var(--help-primary);
    color: white;
    font-weight: 500;
}

/* 分类树形菜单 */
.help-category-tree {
    margin-top: 0.5rem;
}

.help-category-loading,
.help-category-empty {
    padding: 0.5rem 1rem;
    color: var(--help-text-secondary);
    font-size: 0.875rem;
}

.help-category-node {
    margin-bottom: 0.25rem;
}

.help-category-node-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.help-category-node-content:hover {
    background: white;
}

.help-category-node-content.active {
    background: var(--help-primary);
    color: white;
}

.help-category-node-content.active .help-category-link {
    color: white;
}

.help-category-expand-icon {
    width: 16px;
    font-size: 0.75rem;
    color: var(--help-text-secondary);
    transition: transform 0.2s;
    cursor: pointer;
}

.help-category-node-content.active .help-category-expand-icon {
    color: white;
}

.help-category-spacer {
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-category-link {
    flex: 1;
    color: var(--help-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.help-category-link:hover {
    color: var(--help-primary);
}

.help-category-node-content.active .help-category-link:hover {
    color: white;
}

.help-category-children {
    margin-top: 0.25rem;
    margin-left: 0.5rem;
}

.help-sidebar-submenu {
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.help-sidebar-subitem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--help-text-secondary);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.help-sidebar-subitem:hover,
.help-sidebar-subitem.active {
    background: white;
    color: var(--help-primary);
}

.help-sidebar-subitem i {
    font-size: 0.75rem;
}

/* 主要内容区域 */
.help-main-content {
    flex: 1;
    background: white;
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: var(--help-shadow);
}

.help-content-header {
    margin-bottom: 2.5rem;
}

.help-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--help-text);
    margin-bottom: 0.5rem;
}

.help-subtitle {
    font-size: 1.125rem;
    color: var(--help-text-secondary);
}

/* 卡片网格 */
.help-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.help-card {
    background: var(--help-bg-light);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--help-border);
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--help-shadow-lg);
}

.help-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.help-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--help-text);
    margin-bottom: 1.5rem;
}

.help-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-card-list li a {
    color: var(--help-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: block;
}

.help-card-list li a:hover {
    color: var(--help-primary);
}

/* 浮动操作按钮 */
.help-fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.help-fab {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--help-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--help-shadow-lg);
    transition: transform 0.2s, box-shadow 0.2s;
}

.help-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.help-fab-top {
    background: white;
    color: var(--help-primary);
    border: 2px solid var(--help-primary);
}

.help-fab-top:hover {
    background: var(--help-primary);
    color: white;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .help-cards-grid {
        grid-template-columns: 1fr;
    }

    .help-container {
        flex-direction: column;
    }

    .help-sidebar {
        width: 100%;
        position: static;
    }

    .help-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .help-header-container {
        padding: 1rem;
    }

    .help-container {
        padding: 1rem;
    }

    .help-main-content {
        padding: 1.5rem;
    }

    .help-title {
        font-size: 2rem;
    }
}

/* 加载状态 */
.help-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 400px;
}

.help-loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--help-border);
    border-top-color: var(--help-primary);
    border-radius: 50%;
    animation: help-spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes help-spin {
    to {
        transform: rotate(360deg);
    }
}

.help-loading p {
    color: var(--help-text-secondary);
    font-size: 0.95rem;
}

/* 空状态 */
.help-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 400px;
    text-align: center;
}

.help-empty-state p {
    color: var(--help-text-secondary);
    font-size: 1.1rem;
}

/* 文章列表 */
.help-article-list-container {
    margin-top: 2rem;
}

.help-article-list-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--help-border);
}

.help-article-list-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--help-text);
    margin-bottom: 0.5rem;
}

.help-article-list-count {
    color: var(--help-text-secondary);
    font-size: 0.95rem;
}

.help-article-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.help-article-item {
    border-bottom: 1px solid var(--help-border);
    padding-bottom: 1.5rem;
}

.help-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.help-article-item-link {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.help-article-item-link:hover {
    opacity: 0.8;
}

.help-article-item-image-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--help-bg-light);
}

.help-article-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 没有图片时的样式 */
.help-article-item-link:not(:has(.help-article-item-image-wrapper)) {
    gap: 0;
}

.help-article-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-article-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--help-text);
    margin: 0;
    transition: color 0.2s;
}

.help-article-item-link:hover .help-article-item-title {
    color: var(--help-primary);
}

.help-article-item-summary {
    color: var(--help-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.help-article-item-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.help-article-item-meta .help-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--help-text-secondary);
    font-size: 0.875rem;
}

.help-article-item-meta .help-meta-item i {
    font-size: 0.75rem;
}

/* 分页 */
.help-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--help-border);
}

.help-pagination-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--help-border);
    border-radius: 0.375rem;
    color: var(--help-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
    cursor: pointer;
}

.help-pagination-btn:hover:not(.disabled) {
    background: var(--help-primary);
    color: white;
    border-color: var(--help-primary);
}

.help-pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.help-pagination-info {
    color: var(--help-text-secondary);
    font-size: 0.875rem;
}

/* 文章详情页 */
.help-breadcrumb {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--help-border);
}

.help-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.help-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--help-text-secondary);
    font-size: 0.875rem;
}

.help-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--help-text-secondary);
}

.help-breadcrumb a {
    color: var(--help-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.help-breadcrumb a:hover {
    color: var(--help-primary-dark);
    text-decoration: underline;
}

.help-breadcrumb span {
    color: var(--help-text);
}

.help-article-detail {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.help-article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--help-border);
}

.help-article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--help-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.help-article-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.help-article-meta .help-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--help-text-secondary);
    font-size: 0.875rem;
}

.help-article-meta .help-meta-item i {
    font-size: 0.75rem;
    color: var(--help-primary);
}

.help-article-meta .help-meta-item a {
    color: var(--help-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.help-article-meta .help-meta-item a:hover {
    color: var(--help-primary-dark);
    text-decoration: underline;
}

.help-article-image {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.help-article-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.help-article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--help-text);
    word-wrap: break-word;
}

/* 修复 Quill 字体大小样式 - Quill 使用内联样式 style="font-size: Xpx" */
/* 内联样式优先级已经足够高，不需要额外处理 */
/* 但如果 Quill 使用类名，需要以下样式支持 */

/* 支持 Quill 的字体大小类（如果使用类名） */
.help-article-content .ql-size-small,
.help-article-content span.ql-size-small {
    font-size: 0.75em !important;
}

.help-article-content .ql-size-large,
.help-article-content span.ql-size-large {
    font-size: 1.5em !important;
}

.help-article-content .ql-size-huge,
.help-article-content span.ql-size-huge {
    font-size: 2.5em !important;
}

/* 确保字体大小样式不被覆盖 */
.help-article-content [class*="ql-size"] {
    display: inline;
}

.help-article-content h1,
.help-article-content h2,
.help-article-content h3,
.help-article-content h4,
.help-article-content h5,
.help-article-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--help-text);
    line-height: 1.3;
}

.help-article-content h1 {
    font-size: 2rem;
}

.help-article-content h2 {
    font-size: 1.75rem;
}

.help-article-content h3 {
    font-size: 1.5rem;
}

.help-article-content h4 {
    font-size: 1.25rem;
}

.help-article-content p {
    margin-bottom: 1rem;
}

.help-article-content ul,
.help-article-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

/* 修复无序列表的点式编号 - Quill 使用 data-list 属性 */
.help-article-content ul {
    list-style-type: disc !important;
}

.help-article-content ol {
    list-style-type: decimal !important;
}

/* 根据 data-list 属性修复列表样式 */
.help-article-content li[data-list="bullet"] {
    list-style-type: disc !important;
    display: list-item !important;
}

.help-article-content li[data-list="ordered"] {
    list-style-type: decimal !important;
    display: list-item !important;
}

.help-article-content li {
    margin-bottom: 0.5rem;
    display: list-item !important;
}

/* 确保父元素 ul 也正确显示 */
.help-article-content ul li[data-list="bullet"] {
    list-style-type: disc !important;
}

.help-article-content ol li[data-list="ordered"] {
    list-style-type: decimal !important;
}

.help-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin: 1rem 0;
}

.help-article-content a {
    color: var(--help-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.help-article-content a:hover {
    color: var(--help-primary-dark);
    text-decoration: underline;
}

.help-article-content blockquote {
    border-left: 4px solid var(--help-primary);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--help-text-secondary);
    font-style: italic;
}

/* 修复代码块样式 - Quill 代码块的实际结构是 .ql-code-block-container > .ql-code-block */
.help-article-content .ql-code-block-container {
    margin: 1.5rem 0;
    display: block;
}

.help-article-content .ql-code-block-container .ql-code-block,
.help-article-content .ql-code-block {
    background: #1e1e1e !important;
    color: #d4d4d4 !important;
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    padding: 1.5rem !important;
    border: 1px solid #3e3e3e !important;
    border-left: 4px solid #3e3e3e !important;
    white-space: pre !important;
    overflow-x: auto !important;
    margin: 0 !important;
    display: block !important;
}

/* 兼容旧的代码块格式 */
.help-article-content pre.ql-code-block,
.help-article-content pre[class*="ql-code-block"] {
    background: #1e1e1e !important;
    color: #d4d4d4 !important;
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    padding: 1.5rem !important;
    border: 1px solid #3e3e3e !important;
    border-left: 4px solid #3e3e3e !important;
    white-space: pre !important;
    overflow-x: auto !important;
    margin: 1.5rem 0 !important;
}

.help-article-content pre.ql-code-block code,
.help-article-content .ql-code-block code {
    background: transparent !important;
    padding: 0 !important;
    color: inherit !important;
    font-size: inherit !important;
}

.help-article-content code {
    background: var(--help-bg-light);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--help-primary);
}

.help-article-content pre {
    background: var(--help-bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid var(--help-border);
}

/* 修复代码块样式 */
.help-article-content pre.ql-code-block,
.help-article-content pre[class*="ql-code-block"] {
    background: #1e1e1e !important;
    color: #d4d4d4 !important;
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    padding: 1.5rem !important;
    border: 1px solid #3e3e3e !important;
}

.help-article-content pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.help-article-content pre.ql-code-block code,
.help-article-content pre[class*="ql-code-block"] code {
    background: transparent !important;
    color: inherit !important;
}

.help-article-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--help-border);
}

.help-article-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: var(--help-text-secondary);
    font-size: 0.875rem;
}

.help-article-tags i {
    color: var(--help-primary);
}

.help-article-tags a {
    color: var(--help-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.help-article-tags a:hover {
    color: var(--help-primary-dark);
    text-decoration: underline;
}

/* 相关文章 */
.help-related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--help-border);
}

.help-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--help-text);
    margin-bottom: 1.5rem;
}

.help-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.help-related-item {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--help-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.help-related-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--help-shadow-lg);
}

.help-related-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.help-related-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--help-bg-light);
}

.help-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.help-related-item:hover .help-related-image img {
    transform: scale(1.05);
}

.help-related-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--help-text);
    padding: 1rem;
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s;
}

.help-related-link:hover .help-related-title {
    color: var(--help-primary);
}

/* 错误提示 */
.help-error {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 400px;
    text-align: center;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--help-shadow);
}

.help-error p {
    color: var(--help-text-secondary);
    font-size: 1.1rem;
}

