/* Help Styles */
.help-container {
    display: flex;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.help-content-wrapper {
    display: flex;
    width: 100%;
    gap: 25px;
}

.help-main-content {
    flex: 1;
}

.help-header {
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.help-header h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 600;
}

.help-subtitle {
    margin: 10px 0 0 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature-item {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    color: #495057;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.feature-item i {
    color: #6c63ff;
    margin-right: 8px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 8px 0;
    color: #495057;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.5;
}

.csv-sample {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
}

.csv-sample pre {
    margin: 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    line-height: 1.4;
    color: #495057;
    white-space: pre-wrap;
    word-break: break-word;
}

.quality-standards, .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.standard-item, .tip-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.standard-item h4, .tip-item h4 {
    color: #495057;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.standard-item i, .tip-item i {
    color: #6c63ff;
}

.help-sidebar {
    width: 250px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar-item {
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.sidebar-item:hover {
    background-color: #e9ecef;
}

.sidebar-item.active {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #0d47a1;
}

.sidebar-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.help-content {
    flex: 1;
    padding: 0 0 0 25px;
}

.help-content-section {
    display: none;
}

.help-content-section.active {
    display: block;
}

.help-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 25px;
}

.help-section h2 {
    color: #495057;
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-section h2 i {
    color: #6c63ff;
}

.help-section h3 {
    color: #2c3e50;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.help-section h3 i {
    margin-right: 10px;
    color: #3498db;
}

.help-section p {
    color: #555;
    line-height: 1.6;
}

.help-section ul {
    color: #555;
    padding-left: 20px;
}

.help-section ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.help-img {
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 15px 0;
}

.step-by-step {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 15px;
    margin: 15px 0;
}

.step-by-step ol {
    padding-left: 20px;
    margin: 0;
}

.step-by-step li {
    margin-bottom: 10px;
}

.help-note {
    background-color: #fef9e7;
    border-left: 4px solid #f1c40f;
    padding: 10px 15px;
    margin: 15px 0;
}

.help-tip {
    background-color: #e8f6ff;
    border-left: 4px solid #3498db;
    padding: 10px 15px;
    margin: 15px 0;
}

.help-warning {
    background-color: #fdedec;
    border-left: 4px solid #e74c3c;
    padding: 10px 15px;
    margin: 15px 0;
}

.help-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.help-section table th, 
.help-section table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.help-section table th {
    background-color: #f5f5f5;
}

.help-section table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.help-section .feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.help-section .feature-item {
    flex: 1 0 200px;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-section .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.help-section .feature-item h4 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.feature-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

.feature-highlight h4 {
    color: #155724;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-highlight h4 i {
    color: #28a745;
}

.feature-highlight p {
    color: #155724;
    margin-bottom: 15px;
}

.feature-highlight ul {
    color: #155724;
    margin-bottom: 15px;
}

.feature-highlight ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .help-container {
        flex-direction: column;
    }
    .help-content-wrapper {
        flex-direction: column;
    }
    .help-sidebar {
        width: 100%;
        margin-bottom: 20px;
        position: relative;
    }
    .help-content {
        padding: 0;
    }
    .feature-grid, .quality-standards, .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark Theme */
body.theme-dark #helpContent,
body.theme-dark .help-container {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Fix for Agent Dashboard Help Guide heading in dark theme */
body.theme-dark #helpContent h2,
body.theme-dark #helpContent h2 i {
    color: #ffffff;
}

body.theme-dark .help-sidebar {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

body.theme-dark .sidebar-item {
    color: var(--text-color);
}

body.theme-dark .sidebar-item:hover {
    background-color: var(--hover-bg);
}

body.theme-dark .sidebar-item.active {
    background-color: var(--secondary-bg);
    border-left-color: var(--secondary-color);
    color: var(--secondary-color);
}

body.theme-dark .help-section {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

body.theme-dark .help-section h3 {
    color: var(--text-color);
    border-bottom-color: var(--border-color);
}

body.theme-dark .help-section h3 i {
    color: var(--secondary-color);
}

body.theme-dark .help-section p,
body.theme-dark .help-section ul,
body.theme-dark .help-section ol,
body.theme-dark .help-section li {
    color: var(--text-light);
}

body.theme-dark .help-img {
    border-color: var(--border-color);
    filter: brightness(0.9);
}

body.theme-dark .step-by-step {
    background-color: var(--secondary-bg);
    border-left-color: var(--secondary-color);
}

body.theme-dark .help-note {
    background-color: rgba(241, 196, 15, 0.1);
    border-left-color: #f1c40f;
}

body.theme-dark .help-tip {
    background-color: rgba(52, 152, 219, 0.1);
    border-left-color: var(--secondary-color);
}

body.theme-dark .help-warning {
    background-color: rgba(231, 76, 60, 0.1);
    border-left-color: var(--danger-color);
}

body.theme-dark .help-section table th,
body.theme-dark .help-section table td {
    border-color: var(--border-color);
}

body.theme-dark .help-section table th {
    background-color: var(--secondary-bg);
}

body.theme-dark .help-section table tr:nth-child(even) {
    background-color: var(--secondary-bg);
}

body.theme-dark .help-section .feature-item {
    background-color: var(--secondary-bg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.theme-dark .help-section .feature-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

body.theme-dark .help-section .feature-item h4 {
    color: var(--text-color);
}

body.theme-dark .feature-highlight {
    background: linear-gradient(135deg, #1e3a1e 0%, #2c5f2c 100%);
    border-color: #28a745;
}

body.theme-dark .feature-highlight h4,
body.theme-dark .feature-highlight p,
body.theme-dark .feature-highlight ul,
body.theme-dark .feature-highlight li {
    color: #b8e7b8;
}

/* Neon Highlights Theme */
body.theme-neon-highlights #helpContent,
body.theme-neon-highlights .help-container {
    background-color: #121212;
    color: #f0f0f0;
    border-color: #333;
}

/* Fix for Agent Dashboard Help Guide heading in neon-highlights theme */
body.theme-neon-highlights #helpContent h2 {
    color: #ffffff;
    text-shadow: 0 0 10px #00ff9d, 0 0 20px #00ff9d, 0 0 30px #00ff9d;
}

body.theme-neon-highlights #helpContent h2 i {
    color: #00ff9d;
}

body.theme-neon-highlights .help-sidebar {
    background-color: var(--card-bg);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
    border: 1px solid var(--border-color);
}

body.theme-neon-highlights .sidebar-item {
    color: var(--text-color);
    transition: all 0.3s ease;
}

body.theme-neon-highlights .sidebar-item:hover {
    background-color: var(--hover-bg);
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.7);
}

body.theme-neon-highlights .sidebar-item.active {
    background-color: rgba(0, 255, 157, 0.15);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.7);
}

body.theme-neon-highlights .sidebar-item i {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.7);
}

body.theme-neon-highlights .help-section {
    background-color: var(--card-bg);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
    border: 1px solid var(--border-color);
}

body.theme-neon-highlights .help-section:hover {
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

body.theme-neon-highlights .help-section h3 {
    color: var(--text-color);
    border-bottom-color: var(--border-color);
}

body.theme-neon-highlights .help-section h3 i {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.7);
}

body.theme-neon-highlights .help-section p,
body.theme-neon-highlights .help-section ul,
body.theme-neon-highlights .help-section ol,
body.theme-neon-highlights .help-section li {
    color: var(--text-light);
}

body.theme-neon-highlights .help-img {
    border-color: var(--border-color);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
}

body.theme-neon-highlights .step-by-step {
    background-color: rgba(0, 255, 157, 0.05);
    border-left-color: var(--primary-color);
}

body.theme-neon-highlights .help-note {
    background-color: rgba(255, 255, 0, 0.05);
    border-left-color: var(--accent-color);
}

body.theme-neon-highlights .help-tip {
    background-color: rgba(0, 255, 157, 0.05);
    border-left-color: var(--primary-color);
}

body.theme-neon-highlights .help-warning {
    background-color: rgba(255, 49, 49, 0.05);
    border-left-color: var(--danger-color);
}

body.theme-neon-highlights .help-section table th,
body.theme-neon-highlights .help-section table td {
    border-color: var(--border-color);
}

body.theme-neon-highlights .help-section table th {
    background-color: rgba(0, 255, 157, 0.05);
}

body.theme-neon-highlights .help-section table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.2);
}

body.theme-neon-highlights .help-section .feature-item {
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.1);
    transition: all 0.3s ease;
}

body.theme-neon-highlights .help-section .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
}

body.theme-neon-highlights .help-section .feature-item h4 {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
}

/* Warm Tones Theme */
body.theme-warm-tones #helpContent,
body.theme-warm-tones .help-container {
    background-color: var(--bg-color);
    color: var(--text-color);
}

body.theme-warm-tones .help-sidebar {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(255, 111, 97, 0.2);
    border: 1px solid var(--border-color);
}

body.theme-warm-tones .sidebar-item {
    color: var(--text-color);
}

body.theme-warm-tones .sidebar-item:hover {
    background-color: var(--hover-bg);
}

body.theme-warm-tones .sidebar-item.active {
    background-color: rgba(255, 111, 97, 0.15);
    border-left-color: var(--secondary-color);
    color: var(--secondary-color);
}

body.theme-warm-tones .sidebar-item i {
    color: var(--secondary-color);
}

body.theme-warm-tones .help-section {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(255, 111, 97, 0.2);
    border: 1px solid var(--border-color);
}

body.theme-warm-tones .help-section:hover {
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.25);
}

body.theme-warm-tones .help-section h3 {
    color: var(--text-color);
    border-bottom-color: var(--border-color);
}

body.theme-warm-tones .help-section h3 i {
    color: var(--secondary-color);
}

body.theme-warm-tones .help-section p,
body.theme-warm-tones .help-section ul,
body.theme-warm-tones .help-section ol,
body.theme-warm-tones .help-section li {
    color: var(--text-light);
}

body.theme-warm-tones .help-img {
    border-color: var(--border-color);
    filter: sepia(0.1);
}

body.theme-warm-tones .step-by-step {
    background-color: var(--secondary-bg);
    border-left-color: var(--secondary-color);
}

body.theme-warm-tones .help-note {
    background-color: rgba(218, 165, 32, 0.1);
    border-left-color: var(--accent-color);
}

body.theme-warm-tones .help-tip {
    background-color: rgba(255, 111, 97, 0.1);
    border-left-color: var(--secondary-color);
}

body.theme-warm-tones .help-warning {
    background-color: rgba(255, 69, 0, 0.1);
    border-left-color: var(--danger-color);
}

body.theme-warm-tones .help-section table th,
body.theme-warm-tones .help-section table td {
    border-color: var(--border-color);
}

body.theme-warm-tones .help-section table th {
    background-color: var(--secondary-bg);
}

body.theme-warm-tones .help-section table tr:nth-child(even) {
    background-color: var(--secondary-bg);
}

body.theme-warm-tones .help-section .feature-item {
    background-color: var(--secondary-bg);
    box-shadow: 0 1px 3px rgba(255, 111, 97, 0.2);
}

body.theme-warm-tones .help-section .feature-item:hover {
    box-shadow: 0 4px 6px rgba(255, 111, 97, 0.3);
}

body.theme-warm-tones .help-section .feature-item h4 {
    color: var(--secondary-color);
}

/* Muted Pastels Theme */
body.theme-muted-pastels #helpContent,
body.theme-muted-pastels .help-container {
    background-color: var(--bg-color);
    color: var(--text-color);
}

body.theme-muted-pastels .help-sidebar {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(168, 218, 220, 0.2);
    border: 1px solid var(--border-color);
}

body.theme-muted-pastels .sidebar-item {
    color: var(--text-color);
}

body.theme-muted-pastels .sidebar-item:hover {
    background-color: var(--hover-bg);
}

body.theme-muted-pastels .sidebar-item.active {
    background-color: rgba(168, 218, 220, 0.15);
    border-left-color: var(--secondary-color);
    color: var(--secondary-color);
}

body.theme-muted-pastels .sidebar-item i {
    color: var(--secondary-color);
}

body.theme-muted-pastels .help-section {
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px rgba(168, 218, 220, 0.2);
    border: 1px solid var(--border-color);
}

body.theme-muted-pastels .help-section:hover {
    box-shadow: 0 4px 12px rgba(168, 218, 220, 0.25);
}

body.theme-muted-pastels .help-section h3 {
    color: var(--text-color);
    border-bottom-color: var(--border-color);
}

body.theme-muted-pastels .help-section h3 i {
    color: var(--secondary-color);
}

body.theme-muted-pastels .help-section p,
body.theme-muted-pastels .help-section ul,
body.theme-muted-pastels .help-section ol,
body.theme-muted-pastels .help-section li {
    color: var(--text-light);
}

body.theme-muted-pastels .help-img {
    border-color: var(--border-color);
    opacity: 0.9;
}

body.theme-muted-pastels .step-by-step {
    background-color: rgba(168, 218, 220, 0.1);
    border-left-color: var(--secondary-color);
}

body.theme-muted-pastels .help-note {
    background-color: rgba(255, 193, 204, 0.1);
    border-left-color: var(--accent-color);
}

body.theme-muted-pastels .help-tip {
    background-color: rgba(168, 218, 220, 0.1);
    border-left-color: var(--secondary-color);
}

body.theme-muted-pastels .help-warning {
    background-color: rgba(179, 156, 208, 0.1);
    border-left-color: var(--danger-color);
}

body.theme-muted-pastels .help-section table th,
body.theme-muted-pastels .help-section table td {
    border-color: var(--border-color);
}

body.theme-muted-pastels .help-section table th {
    background-color: var(--secondary-bg);
}

body.theme-muted-pastels .help-section table tr:nth-child(even) {
    background-color: var(--secondary-bg);
}

body.theme-muted-pastels .help-section .feature-item {
    background-color: var(--secondary-bg);
    box-shadow: 0 1px 3px rgba(168, 218, 220, 0.2);
}

body.theme-muted-pastels .help-section .feature-item:hover {
    box-shadow: 0 4px 6px rgba(168, 218, 220, 0.3);
}

body.theme-muted-pastels .help-section .feature-item h4 {
    color: var(--secondary-color);
}

/* Minty Fresh Theme for Help */
body.theme-minty-fresh .help-container {
    background-color: var(--bg-color);
    color: var(--text-color);
    box-shadow: 0 0 20px rgba(56, 191, 167, 0.05);
}

body.theme-minty-fresh .help-sidebar {
    background-color: var(--secondary-bg);
    border-right: 1px solid var(--border-color);
}

body.theme-minty-fresh .sidebar-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

body.theme-minty-fresh .sidebar-item {
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

body.theme-minty-fresh .sidebar-item:hover {
    background-color: var(--hover-bg);
    color: var(--primary-color);
    transform: translateX(5px);
}

body.theme-minty-fresh .sidebar-item.active {
    background-color: rgba(56, 191, 167, 0.1);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

body.theme-minty-fresh .help-content {
    background-color: var(--bg-color);
}

body.theme-minty-fresh .help-section {
    border-bottom: 1px solid var(--border-color);
}

body.theme-minty-fresh .help-section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

body.theme-minty-fresh .help-section-content h3 {
    color: var(--text-color);
    font-weight: 600;
}

body.theme-minty-fresh .help-section-content p {
    color: var(--text-light);
}

body.theme-minty-fresh .help-section-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

body.theme-minty-fresh .help-section-content a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

body.theme-minty-fresh .help-section-content ul li::before {
    color: var(--primary-color);
}

body.theme-minty-fresh .help-tip {
    background-color: rgba(56, 191, 167, 0.08);
    border-left: 3px solid var(--primary-color);
}

body.theme-minty-fresh .help-tip-title {
    color: var(--primary-color);
}

body.theme-minty-fresh .help-warning {
    background-color: rgba(255, 184, 76, 0.08);
    border-left: 3px solid var(--warning-color);
}

body.theme-minty-fresh .help-warning-title {
    color: var(--warning-color);
}

/* Sunset Gradient Theme for Help */
body.theme-sunset-gradient .help-container {
    background-color: var(--bg-color);
    color: var(--text-color);
    box-shadow: 0 0 20px rgba(255, 95, 109, 0.05);
}

body.theme-sunset-gradient .help-sidebar {
    background-color: var(--secondary-bg);
    border-right: 1px solid var(--border-color);
}

body.theme-sunset-gradient .sidebar-title {
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

body.theme-sunset-gradient .sidebar-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

body.theme-sunset-gradient .sidebar-item {
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

body.theme-sunset-gradient .sidebar-item:hover {
    background-color: var(--hover-bg);
    background-image: linear-gradient(90deg, rgba(255, 95, 109, 0.05), rgba(255, 195, 113, 0.05));
    color: var(--primary-color);
}

body.theme-sunset-gradient .sidebar-item.active {
    background-color: rgba(255, 95, 109, 0.05);
    color: var(--primary-color);
    border-left: 3px solid;
    border-image: linear-gradient(to bottom, var(--secondary-color), var(--accent-color)) 1 100%;
}

body.theme-sunset-gradient .help-content {
    background-color: var(--bg-color);
}

body.theme-sunset-gradient .help-section {
    border-bottom: 1px solid var(--border-color);
}

body.theme-sunset-gradient .help-section-title {
    color: var(--text-color);
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

body.theme-sunset-gradient .help-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

body.theme-sunset-gradient .help-section-content h3 {
    color: var(--text-color);
    font-weight: 600;
}

body.theme-sunset-gradient .help-section-content p {
    color: var(--text-light);
}

body.theme-sunset-gradient .help-section-content a {
    background: -webkit-linear-gradient(var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

body.theme-sunset-gradient .help-section-content a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

body.theme-sunset-gradient .help-section-content ul li::before {
    color: var(--primary-color);
}

body.theme-sunset-gradient .help-tip {
    background-color: rgba(255, 95, 109, 0.05);
    border-left: 3px solid;
    border-image: linear-gradient(to bottom, var(--secondary-color), var(--accent-color)) 1 100%;
}

body.theme-sunset-gradient .help-tip-title {
    background: -webkit-linear-gradient(var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

body.theme-sunset-gradient .help-warning {
    background-color: rgba(255, 184, 76, 0.08);
    border-left: 3px solid var(--warning-color);
}

body.theme-sunset-gradient .help-warning-title {
    color: var(--warning-color);
} 