/* Help Panel - Bug reports, feature requests, and help resources */
/* Matches Unified Social Hub design style */

/* ========================================
   PANEL CONTAINER (Match Social Hub)
   ======================================== */

.panel-help {
    position: fixed;
    top: 50px;
    left: 10px;
    width: min(1000px, calc(100vw - 20px));
    max-width: 1000px;
    height: calc(100vh - 100px);
    max-height: 700px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(147, 197, 253, 0.15),
        0 0 20px rgba(212, 175, 55, 0.1);
    border: 1px solid var(--hc-gold-border);
    font-family: 'RemiliaMincho', serif;
    font-size: 12px;
    color: #E5E7EB;
    user-select: none;
    background: transparent;
    animation: hc-panel-slide-in 0.3s ease-out;
    margin: 0;
    padding: 0;
}

.panel-help .panel-content {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.panel-help .panel-close {
    display: none !important;
}

.panel-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        var(--hc-bg-dark) 0%,
        var(--hc-bg-darker) 50%,
        var(--hc-bg-dark) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

/* ========================================
   HEADER (Compact like Social Hub)
   ======================================== */

.help-panel-header {
    background: linear-gradient(180deg,
        rgba(30, 41, 59, 0.95) 0%,
        rgba(51, 65, 85, 0.98) 100%);
    min-height: 30px;
    max-height: 30px;
    border-bottom: 1px solid var(--hc-gold-border);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(147, 197, 253, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 20;
    gap: 8px;
}

.help-panel-header h2 {
    font-size: 11px;
    color: var(--hc-gold-accent);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    opacity: 0.9;
    white-space: nowrap;
    text-shadow:
        0 0 10px rgba(147, 197, 253, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

.help-panel-header .wallet-actions {
    display: flex;
    gap: 2px;
    align-items: center;
}

.help-panel-header .refresh-btn,
.help-panel-header .close-btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.6) 0%,
        rgba(51, 65, 85, 0.7) 100%);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 3px;
    color: rgba(186, 166, 116, 0.8);
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.help-panel-header .refresh-btn:hover,
.help-panel-header .close-btn:hover {
    background: linear-gradient(135deg,
        rgba(147, 197, 253, 0.3) 0%,
        rgba(59, 130, 246, 0.4) 100%);
    border-color: var(--hc-blue-glow);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 10px rgba(147, 197, 253, 0.3);
}

.help-panel-header .refresh-btn.spinning {
    animation: spin 1s linear infinite;
}

/* ========================================
   TABS - Compact Morrhollow Style
   ======================================== */

.help-panel-tabs {
    display: flex;
    gap: var(--hc-gap-sm);
    padding: var(--hc-pad-sm) var(--hc-pad-sm);
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 100%);
    border-bottom: 1px solid var(--hc-gold-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.help-panel-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px 6px;
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.6) 0%,
        rgba(51, 65, 85, 0.7) 100%);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 3px;
    font-size: 10px;
    color: rgba(186, 166, 116, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 1px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.help-panel-tab .tab-icon {
    font-size: 11px;
    opacity: 0.9;
}

.help-panel-tab .tab-text {
    white-space: nowrap;
}

.help-panel-tab:hover {
    background: linear-gradient(135deg,
        rgba(147, 197, 253, 0.3) 0%,
        rgba(59, 130, 246, 0.4) 100%);
    border-color: var(--hc-blue-glow);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 10px rgba(147, 197, 253, 0.3);
}

.help-panel-tab.active {
    background: linear-gradient(135deg,
        rgba(147, 197, 253, 0.4) 0%,
        rgba(59, 130, 246, 0.5) 100%);
    border-color: var(--hc-blue-glow);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 15px rgba(147, 197, 253, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.4);
}

.help-panel-tab .tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14px;
    height: 14px;
    padding: 0 3px;
    background: rgba(251, 191, 36, 0.9);
    color: #1a1a2e;
    font-size: 9px;
    font-weight: 700;
    border-radius: 7px;
    margin-left: 2px;
}

/* ========================================
   BODY CONTENT
   ======================================== */

.help-panel-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background: transparent;
}

.help-content-modern {
    padding: var(--hc-pad-lg);
    display: flex;
    flex-direction: column;
    gap: var(--hc-gap-lg);
}

.help-section {
    display: flex;
    flex-direction: column;
    gap: var(--hc-gap-md);
}

.section-title-modern {
    font-size: 11px;
    color: var(--hc-gold-accent);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    opacity: 0.9;
    padding: 4px 0;
    border-bottom: 1px solid var(--hc-gold-border);
}

/* ========================================
   FORMS
   ======================================== */

.help-form-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 4px;
    padding: var(--hc-pad-lg);
}

.help-form {
    display: flex;
    flex-direction: column;
    gap: var(--hc-gap-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-label {
    font-size: 10px;
    color: var(--hc-blue-glow);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 3px;
    padding: 6px 8px;
    font-size: 11px;
    color: #E5E7EB;
    font-family: 'RemiliaMincho', serif;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--hc-blue-glow);
    box-shadow: 0 0 10px rgba(147, 197, 253, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-select {
    cursor: pointer;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: var(--hc-gap-sm);
}

.form-submit-btn {
    background: linear-gradient(135deg,
        rgba(147, 197, 253, 0.4) 0%,
        rgba(59, 130, 246, 0.5) 100%);
    border: 1px solid var(--hc-blue-glow);
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 15px rgba(147, 197, 253, 0.2);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg,
        rgba(147, 197, 253, 0.5) 0%,
        rgba(59, 130, 246, 0.6) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 20px rgba(147, 197, 253, 0.4);
    transform: translateY(-1px);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* ========================================
   CARDS (Bug Reports & Features)
   ======================================== */

.reports-list {
    display: flex;
    flex-direction: column;
    gap: var(--hc-gap-md);
}

.report-card,
.feature-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 4px;
    padding: var(--hc-pad-md);
    transition: all 0.2s ease;
}

.report-card:hover,
.feature-card:hover {
    border-color: var(--hc-blue-glow);
    box-shadow: 0 0 10px rgba(147, 197, 253, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.report-header,
.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: var(--hc-gap-sm);
    margin-bottom: 4px;
}

.report-title,
.feature-title {
    font-size: 11px;
    color: #E5E7EB;
    font-weight: 600;
    flex: 1;
    line-height: 1.4;
}

.report-status,
.feature-status {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
    white-space: nowrap;
}

.report-meta,
.feature-meta {
    display: flex;
    gap: var(--hc-gap-md);
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.report-category,
.feature-category,
.report-date,
.feature-date,
.feature-upvotes {
    font-size: 9px;
    color: rgba(186, 166, 116, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.report-description,
.feature-description {
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.5;
    margin-top: 4px;
}

.upvote-btn {
    margin-top: var(--hc-gap-sm);
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.3) 0%,
        rgba(16, 185, 129, 0.4) 100%);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 3px;
    padding: 4px 10px;
    font-size: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upvote-btn:hover {
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.4) 0%,
        rgba(16, 185, 129, 0.5) 100%);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* ========================================
   ROADMAP
   ======================================== */

.roadmap-section {
    margin-bottom: var(--hc-gap-lg);
}

.roadmap-section-title {
    font-size: 10px;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.roadmap-info,
.trending-info {
    background: rgba(147, 197, 253, 0.05);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 4px;
    padding: 8px;
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: var(--hc-gap-md);
}

/* ========================================
   FAQ
   ======================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--hc-gap-md);
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    background: rgba(147, 197, 253, 0.1);
    padding: 8px;
    font-size: 11px;
    color: var(--hc-blue-glow);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.faq-icon {
    font-size: 12px;
}

.faq-answer {
    padding: 8px;
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.6;
}

.help-footer {
    margin-top: var(--hc-gap-lg);
    padding: var(--hc-pad-md);
    background: rgba(147, 197, 253, 0.05);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 4px;
    font-size: 10px;
    color: #94a3b8;
    text-align: center;
}

.help-link {
    color: var(--hc-blue-glow);
    text-decoration: none;
    font-weight: 600;
}

.help-link:hover {
    text-decoration: underline;
}

/* ========================================
   DOCS RENDERING (from Codex)
   ======================================== */

.docs-content {
    padding: var(--hc-pad-lg);
}

.doc-welcome {
    text-align: center;
    padding: var(--hc-pad-lg) 0;
    border-bottom: 1px solid var(--hc-gold-border);
    margin-bottom: var(--hc-gap-lg);
}

.doc-welcome h2 {
    font-size: 14px;
    color: var(--hc-gold-accent);
    margin: 0 0 var(--hc-gap-sm) 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doc-welcome p {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}

.doc-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--hc-gap-md);
}

.doc-category-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 4px;
    padding: var(--hc-pad-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.doc-category-card:hover {
    border-color: var(--hc-blue-glow);
    box-shadow: 0 0 15px rgba(147, 197, 253, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.doc-category-header {
    display: flex;
    align-items: center;
    gap: var(--hc-gap-sm);
    margin-bottom: 4px;
}

.doc-category-icon {
    font-size: 16px;
}

.doc-category-header h3 {
    font-size: 12px;
    color: #E5E7EB;
    margin: 0;
    flex: 1;
}

.doc-count {
    font-size: 9px;
    color: var(--hc-blue-glow);
    padding: 2px 6px;
    background: rgba(147, 197, 253, 0.1);
    border-radius: 3px;
}

.doc-category-desc {
    font-size: 10px;
    color: #94a3b8;
    margin: 0;
}

/* Category View */

.doc-category-view {
    margin-bottom: var(--hc-gap-lg);
}

.doc-category-view h2 {
    font-size: 13px;
    color: var(--hc-gold-accent);
    margin: var(--hc-gap-sm) 0;
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: var(--hc-gap-sm);
}

.doc-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--hc-pad-md);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 4px;
    text-decoration: none;
    color: #E5E7EB;
    transition: all 0.2s ease;
}

.doc-link:hover {
    border-color: var(--hc-blue-glow);
    box-shadow: 0 0 10px rgba(147, 197, 253, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.doc-link-title {
    font-size: 11px;
    font-weight: 600;
}

.doc-link-arrow {
    font-size: 12px;
    color: var(--hc-blue-glow);
}

/* Doc Viewer */

.doc-viewer {
    display: flex;
    flex-direction: column;
    gap: var(--hc-gap-lg);
}

.doc-viewer-header {
    display: flex;
    align-items: center;
    gap: var(--hc-gap-md);
    padding-bottom: var(--hc-gap-md);
    border-bottom: 1px solid var(--hc-gold-border);
}

.doc-back-btn {
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.6) 0%,
        rgba(51, 65, 85, 0.7) 100%);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 3px;
    padding: 4px 8px;
    font-size: 10px;
    color: rgba(186, 166, 116, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
}

.doc-back-btn:hover {
    background: linear-gradient(135deg,
        rgba(147, 197, 253, 0.3) 0%,
        rgba(59, 130, 246, 0.4) 100%);
    border-color: var(--hc-blue-glow);
    color: #fff;
}

.doc-breadcrumb {
    font-size: 10px;
    color: var(--hc-blue-glow);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Markdown Content Styling */

.doc-markdown-content {
    font-size: 11px;
    line-height: 1.7;
    color: #E5E7EB;
}

.doc-markdown-content h1 {
    font-size: 16px;
    color: var(--hc-gold-accent);
    margin: var(--hc-gap-lg) 0 var(--hc-gap-md) 0;
    padding-bottom: var(--hc-gap-sm);
    border-bottom: 1px solid var(--hc-gold-border);
}

.doc-markdown-content h2 {
    font-size: 14px;
    color: var(--hc-blue-glow);
    margin: var(--hc-gap-md) 0 var(--hc-gap-sm) 0;
}

.doc-markdown-content h3 {
    font-size: 12px;
    color: #94a3b8;
    margin: var(--hc-gap-sm) 0;
}

.doc-markdown-content p {
    margin: 0 0 var(--hc-gap-md) 0;
}

.doc-markdown-content ul,
.doc-markdown-content ol {
    margin: 0 0 var(--hc-gap-md) 0;
    padding-left: 20px;
}

.doc-markdown-content li {
    margin-bottom: var(--hc-gap-xs);
}

.doc-markdown-content code {
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--hc-blue-glow);
}

.doc-markdown-content pre {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 4px;
    padding: var(--hc-pad-md);
    overflow-x: auto;
    margin: 0 0 var(--hc-gap-md) 0;
}

.doc-markdown-content pre code {
    background: none;
    padding: 0;
}

.doc-markdown-content a {
    color: var(--hc-blue-glow);
    text-decoration: none;
}

.doc-markdown-content a:hover {
    text-decoration: underline;
}

.doc-markdown-content blockquote {
    border-left: 3px solid var(--hc-blue-glow);
    padding-left: var(--hc-pad-md);
    margin: 0 0 var(--hc-gap-md) 0;
    color: #94a3b8;
    font-style: italic;
}

.doc-markdown-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 var(--hc-gap-md) 0;
}

.doc-markdown-content th,
.doc-markdown-content td {
    border: 1px solid rgba(147, 197, 253, 0.2);
    padding: 6px 8px;
    text-align: left;
}

.doc-markdown-content th {
    background: rgba(147, 197, 253, 0.1);
    color: var(--hc-blue-glow);
    font-weight: 600;
}

/* Doc Navigation */

.doc-navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--hc-gap-md);
    padding-top: var(--hc-gap-lg);
    border-top: 1px solid var(--hc-gold-border);
}

.doc-nav-btn {
    display: flex;
    align-items: center;
    gap: var(--hc-gap-sm);
    padding: var(--hc-pad-md);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 4px;
    font-size: 10px;
    color: #E5E7EB;
    cursor: pointer;
    transition: all 0.2s ease;
    max-width: 45%;
}

.doc-nav-btn:hover {
    border-color: var(--hc-blue-glow);
    box-shadow: 0 0 10px rgba(147, 197, 253, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.doc-nav-arrow {
    font-size: 12px;
    color: var(--hc-blue-glow);
}

.doc-nav-label {
    flex: 1;
}

.doc-nav-prev {
    justify-content: flex-start;
}

.doc-nav-next {
    justify-content: flex-end;
    text-align: right;
}

.codex-loading {
    text-align: center;
    padding: 40px 20px;
    font-size: 11px;
    color: #94a3b8;
}

.codex-error {
    text-align: center;
    padding: 40px 20px;
    font-size: 11px;
    color: #ef4444;
}

/* ========================================
   CHANGELOG STYLES
   ======================================== */

.changelog-list {
    display: flex;
    flex-direction: column;
    gap: var(--hc-gap-lg);
}

.changelog-update {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 6px;
    padding: var(--hc-pad-md);
    transition: all 0.2s ease;
}

.changelog-update:hover {
    border-color: var(--hc-blue-glow);
    box-shadow: 0 0 15px rgba(147, 197, 253, 0.1);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--hc-gap-md);
    padding-bottom: var(--hc-gap-sm);
    border-bottom: 1px solid rgba(147, 197, 253, 0.1);
}

.changelog-title {
    display: flex;
    align-items: center;
    gap: var(--hc-gap-sm);
    flex: 1;
}

.changelog-title h4 {
    font-size: 13px;
    color: var(--hc-gold-accent);
    margin: 0;
    font-weight: 600;
}

.changelog-version {
    font-size: 9px;
    color: rgba(147, 197, 253, 0.6);
    background: rgba(147, 197, 253, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.3px;
}

.changelog-date {
    font-size: 10px;
    color: #94a3b8;
    white-space: nowrap;
}

.changelog-changes {
    display: flex;
    flex-direction: column;
    gap: var(--hc-gap-sm);
}

.changelog-item {
    display: flex;
    align-items: flex-start;
    gap: var(--hc-gap-sm);
    padding: 6px 8px 6px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 11px;
    line-height: 1.5;
}

.change-icon {
    font-size: 13px;
    flex-shrink: 0;
}

.change-type {
    font-weight: 600;
    flex-shrink: 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.change-description {
    color: #E5E7EB;
    flex: 1;
}

/* ========================================
   EMPTY STATE
   ======================================== */

.empty-state-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.empty-icon-modern {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.empty-text-modern {
    font-size: 11px;
    color: #94a3b8;
    max-width: 300px;
    line-height: 1.6;
}

/* ========================================
   DRAGGING STATE
   ======================================== */

.panel-help.dragging {
    cursor: move;
    opacity: 0.9;
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

.help-panel-body::-webkit-scrollbar {
    width: 6px;
}

.help-panel-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.help-panel-body::-webkit-scrollbar-thumb {
    background: rgba(147, 197, 253, 0.3);
    border-radius: 3px;
}

.help-panel-body::-webkit-scrollbar-thumb:hover {
    background: rgba(147, 197, 253, 0.5);
}

/* ========================================
   RESPONSIVE (Mobile)
   ======================================== */

@media (max-width: 768px) {
    .panel-help {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0;
    }

    .help-panel-tabs {
        overflow-x: auto;
        gap: 2px;
        padding: 4px;
    }

    .help-panel-tab .tab-text {
        display: none;
    }

    .help-panel-tab {
        min-width: 40px;
        justify-content: center;
    }

    .help-content-modern {
        padding: var(--hc-pad-md);
    }
}
