/**
 * Dashboard Help Tab Styles
 * Gemeinsame Styles für den Hilfe-Tab in allen Dashboards
 */

/* ==================== Help Tab Container - Card-basiertes Layout ==================== */

.help-tab-container {
    padding: 16px;
}

/* Grid-Layout wie bei Übersicht-Tab */
.help-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Card-Styles angepasst an S1 Übersicht */
.help-card {
    background: var(--bg-primary, #0f172a);
    border-radius: 8px;
    border: 1px solid var(--border-color, #334155);
    overflow: hidden;
}

.help-card-wide {
    grid-column: span 1;
}

.help-card-full {
    grid-column: span 2;
}

.help-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-secondary, #1e293b);
    border-bottom: 1px solid var(--border-color, #334155);
}

.help-card-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #f1f5f9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-card-header h3 i {
    color: var(--primary-color, #3b82f6);
}

.help-card-actions {
    display: flex;
    gap: 4px;
}

.help-card-actions .btn.btn-small,
.help-card-actions .btn-small {
    padding: 4px 8px !important;
    font-size: 11px !important;
    min-width: auto !important;
    width: auto !important;
    height: 24px !important;
    line-height: 1 !important;
    border-radius: 4px !important;
    gap: 4px !important;
}

.help-card-body {
    padding: 16px;
}

/* Legacy-Styles für Rückwärtskompatibilität */
.help-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.help-tab-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary, #1f2937);
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-tab-header h2 i {
    color: var(--primary-color, #3b82f6);
}

.help-tab-actions {
    display: flex;
    gap: 10px;
}

/* ==================== Help Sections ==================== */

.help-section {
    margin-bottom: 32px;
}

.help-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-section-title i {
    color: var(--primary-color, #3b82f6);
}

/* ==================== Checklists Grid ==================== */

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

.help-checklist-card {
    background: var(--bg-secondary, #1e293b);
    border: 1px solid var(--border-color, #334155);
    border-radius: 8px;
    padding: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.help-checklist-card:hover {
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.help-checklist-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.help-checklist-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary, #f1f5f9);
    margin: 0;
}

.help-checklist-category {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-color, #3b82f6);
}

.help-checklist-description {
    font-size: 0.8rem;
    color: var(--text-secondary, #94a3b8);
    margin-bottom: 10px;
    line-height: 1.4;
}

.help-checklist-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted, #64748b);
    margin-bottom: 10px;
}

.help-checklist-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.help-checklist-actions {
    display: flex;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color, #334155);
}

.help-checklist-actions .btn {
    flex: 1;
    padding: 6px 10px;
    font-size: 0.8rem;
}

/* ==================== Documents Search ==================== */

.help-documents-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 8px;
}

.help-documents-search .form-input {
    flex: 1;
    padding: 10px 12px;
    padding-right: 36px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #f1f5f9;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.help-documents-search .form-input::placeholder {
    color: #64748b;
}

.help-documents-search .form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.help-documents-search .btn-icon {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
}

.help-documents-search .btn-icon:hover {
    background: #334155;
    color: #f1f5f9;
}

.help-documents-list {
    min-height: 100px;
}

/* ==================== Documents Grid ==================== */

.help-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.help-document-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary, #1e293b);
    border-radius: 8px;
    border: 1px solid var(--border-color, #334155);
    transition: border-color 0.2s;
}

.help-document-card:hover {
    border-color: var(--primary-color, #3b82f6);
}

.help-document-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.help-document-icon.pdf {
    background: rgba(220, 38, 38, 0.15);
    color: #ef4444;
}

.help-document-icon.doc,
.help-document-icon.docx {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.help-document-icon.xls,
.help-document-icon.xlsx {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.help-document-icon.link {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.help-document-icon.default {
    background: rgba(100, 116, 139, 0.15);
    color: #64748b;
}

.help-document-content {
    flex: 1;
    min-width: 0;
}

.help-document-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary, #f1f5f9);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.help-document-description {
    font-size: 0.75rem;
    color: var(--text-secondary, #94a3b8);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.help-document-category {
    display: inline-block;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-color, #3b82f6);
    margin-right: 6px;
    margin-bottom: 4px;
}

.help-document-tags {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--text-muted, #64748b);
    margin-bottom: 4px;
}

.help-document-tags i {
    margin-right: 4px;
}

.help-document-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.help-document-actions .btn-icon {
    padding: 6px 10px;
    font-size: 0.8rem;
}

/* Buttons ohne Hover-Effekt - Farben permanent sichtbar */
.help-document-actions .btn-icon.btn-primary {
    background: var(--primary-color, #3b82f6);
    color: white;
    border: 1px solid var(--primary-color, #3b82f6);
}

.help-document-actions .btn-icon.btn-primary:hover {
    background: var(--primary-color, #3b82f6);
}

.help-document-actions .btn-icon.btn-secondary {
    background: var(--bg-tertiary, #475569);
    color: white;
    border: 1px solid var(--bg-tertiary, #475569);
}

.help-document-actions .btn-icon.btn-secondary:hover {
    background: var(--bg-tertiary, #475569);
}

/* ==================== Fulltext Search Results ==================== */

.fulltext-search-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-primary, #f1f5f9);
}

.fulltext-search-info i {
    color: var(--primary-color, #3b82f6);
}

.fulltext-search-info strong {
    color: var(--primary-color, #3b82f6);
}

.fulltext-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fulltext-document-card {
    background: var(--bg-primary, #ffffff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.fulltext-document-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary, #1e293b);
    border-bottom: 1px solid var(--border-color, #334155);
}

.fulltext-document-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fulltext-document-icon.pdf {
    background: #fef2f2;
    color: #dc2626;
}

.fulltext-document-info {
    flex: 1;
    min-width: 0;
}

.fulltext-document-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary, #f1f5f9);
    margin: 0 0 4px 0;
}

.fulltext-document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary, #94a3b8);
}

.fulltext-document-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fulltext-document-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.fulltext-document-actions .btn-icon {
    padding: 8px 12px;
}

.fulltext-document-actions .btn-icon.btn-primary {
    background: var(--primary-color, #3b82f6);
    color: white;
    border: 1px solid var(--primary-color, #3b82f6);
}

.fulltext-document-actions .btn-icon.btn-secondary {
    background: var(--bg-tertiary, #475569);
    color: white;
    border: 1px solid var(--bg-tertiary, #475569);
}

.fulltext-matches {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fulltext-match-item {
    padding: 12px 16px;
    background: var(--bg-tertiary, #f3f4f6);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color, #3b82f6);
}

.fulltext-match-context {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary, #1f2937);
    word-break: break-word;
}

.fulltext-match-context .context-before,
.fulltext-match-context .context-after {
    color: var(--text-secondary, #6b7280);
}

.fulltext-match-context .match-highlight {
    background: #fef08a;
    color: #1f2937;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.fulltext-page-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--text-muted, #9ca3af);
}

/* Responsive Fulltext Search */
@media (max-width: 768px) {
    .fulltext-document-header {
        flex-wrap: wrap;
    }

    .fulltext-document-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .fulltext-document-actions {
        width: 100%;
        margin-top: 10px;
        justify-content: flex-end;
    }

    .fulltext-document-meta {
        flex-direction: column;
        gap: 4px;
    }
}

/* ==================== Empty State ==================== */

.help-empty-state {
    text-align: center;
    padding: 32px 16px;
    color: var(--text-secondary, #94a3b8);
}

.help-empty-state i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.4;
    color: var(--text-muted, #64748b);
}

.help-empty-state h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-primary, #f1f5f9);
    font-weight: 500;
}

.help-empty-state p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--text-secondary, #94a3b8);
}

.help-empty-state .btn {
    margin-top: 8px;
    padding: 6px 12px !important;
    font-size: 12px !important;
    height: auto !important;
    width: auto !important;
    gap: 6px !important;
}

.help-empty-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 12px;
}

.help-empty-actions .btn {
    padding: 6px 12px !important;
    font-size: 12px !important;
    height: auto !important;
    width: auto !important;
    gap: 6px !important;
}

/* ==================== Running Checklist Panel ==================== */

.help-running-checklist {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 16px;
}

.help-running-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.help-running-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary, #f1f5f9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-running-title i {
    color: var(--primary-color, #3b82f6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.help-running-progress {
    margin-bottom: 12px;
}

.help-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.help-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.help-progress-text {
    font-size: 0.8rem;
    color: var(--text-secondary, #94a3b8);
    display: flex;
    justify-content: space-between;
}

.help-running-steps {
    max-height: 300px;
    overflow-y: auto;
}

.help-step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background 0.2s;
}

.help-step-item:hover {
    background: #f8fafc;
}

.help-step-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #93c5fd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}

.help-step-checkbox:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.help-step-checkbox.checked {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.help-step-content {
    flex: 1;
}

.help-step-title {
    font-weight: 500;
    color: var(--text-primary, #1f2937);
    margin-bottom: 4px;
}

.help-step-item.completed .help-step-title {
    text-decoration: line-through;
    color: var(--text-muted, #9ca3af);
}

.help-step-details {
    font-size: 0.8rem;
    color: var(--text-secondary, #6b7280);
}

.help-step-priority {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.help-step-priority.critical {
    background: #fef2f2;
    color: #dc2626;
}

.help-step-priority.high {
    background: #fff7ed;
    color: #ea580c;
}

.help-step-priority.normal {
    background: #f0fdf4;
    color: #16a34a;
}

.help-step-priority.low {
    background: #f3f4f6;
    color: #6b7280;
}

/* ==================== Admin Section ==================== */

.help-admin-section {
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 8px;
    padding: 16px;
    margin-top: 32px;
}

.help-admin-title {
    font-weight: 600;
    color: #854d0e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.help-admin-content {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==================== Modal Styles ==================== */

.help-assign-modal {
    max-width: 600px;
}

.help-template-list {
    max-height: 400px;
    overflow-y: auto;
}

.help-template-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.help-template-item:hover {
    background: var(--hover-bg, #f9fafb);
    border-color: var(--primary-color, #3b82f6);
}

.help-template-item.selected {
    background: #eff6ff;
    border-color: #3b82f6;
}

.help-template-item.assigned {
    opacity: 0.5;
    cursor: not-allowed;
}

.help-template-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color, #e5e7eb);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-template-item.selected .help-template-checkbox {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.help-template-info {
    flex: 1;
}

.help-template-name {
    font-weight: 500;
    color: var(--text-primary, #1f2937);
}

.help-template-meta {
    font-size: 0.8rem;
    color: var(--text-secondary, #6b7280);
}

/* ==================== Responsive ==================== */

@media (max-width: 1024px) {
    .help-overview-grid {
        grid-template-columns: 1fr;
    }

    .help-card-wide,
    .help-card-full {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .help-tab-container {
        padding: 12px;
    }

    .help-tab-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .help-checklists-grid,
    .help-documents-grid {
        grid-template-columns: 1fr;
    }

    .help-document-card {
        flex-direction: column;
    }

    .help-document-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .help-admin-content {
        flex-direction: column;
    }

    .help-card-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .help-card-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ==================== Document Lightbox ==================== */

.document-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.document-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1400px;
    max-height: 900px;
    background: var(--bg-secondary, #1e293b);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-primary, #0f172a);
    border-bottom: 1px solid var(--border-color, #334155);
}

.lightbox-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary, #f1f5f9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lightbox-header h3 i {
    color: var(--primary-color, #3b82f6);
}

.lightbox-actions {
    display: flex;
    gap: 8px;
}

.lightbox-actions .btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-tertiary, #334155);
    border: 1px solid var(--border-color, #475569);
    color: var(--text-secondary, #94a3b8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-actions .btn-icon:hover {
    background: var(--primary-color, #3b82f6);
    border-color: var(--primary-color, #3b82f6);
    color: white;
}

.lightbox-content {
    flex: 1;
    overflow: auto;
    background: var(--bg-primary, #0f172a);
}

.lightbox-content iframe,
.lightbox-content object {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
    object-fit: contain;
}

.lightbox-content .document-text-content {
    padding: 20px;
    margin: 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary, #f1f5f9);
    white-space: pre-wrap;
    word-wrap: break-word;
    background: var(--bg-primary, #0f172a);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-container {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
    }

    .lightbox-header h3 {
        font-size: 1rem;
    }
}

/* ==================== Kontakte Styles ==================== */

.help-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.help-contact-item {
    background: var(--bg-secondary, #1e293b);
    border: 1px solid var(--border-color, #334155);
    border-radius: 8px;
    padding: 12px;
    transition: border-color 0.2s;
}

.help-contact-item:hover {
    border-color: #22c55e;
}

.help-contact-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.help-contact-category {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
}

.help-contact-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary, #f1f5f9);
    margin-bottom: 2px;
}

.help-contact-org {
    font-size: 0.8rem;
    color: var(--text-secondary, #94a3b8);
}

.help-contact-role {
    font-size: 0.75rem;
    color: #22c55e;
    font-style: italic;
    margin-bottom: 6px;
}

.help-contact-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.help-contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    transition: color 0.2s;
}

.help-contact-phone:hover {
    color: #22c55e;
}

.help-contact-phone.emergency {
    color: #ef4444;
    font-weight: 600;
}

.help-contact-phone.emergency:hover {
    color: #dc2626;
}

/* Kontakte Zusammenfassung (initiale Anzeige) */
.help-contacts-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    background: var(--bg-secondary, #1e293b);
    border-radius: 8px;
    border: 1px dashed var(--border-color, #334155);
}

.help-contacts-summary-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 12px;
    opacity: 0.8;
}

.help-contacts-summary-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.help-contacts-summary-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #f1f5f9);
}

.help-contacts-summary-label {
    font-size: 0.9rem;
    color: var(--text-secondary, #94a3b8);
}

.help-contacts-summary-hint {
    font-size: 0.8rem;
    color: var(--text-secondary, #94a3b8);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    margin-top: 8px;
}

.help-contacts-summary-hint i {
    color: #3b82f6;
}

/* Suchergebnis-Info */
.help-contacts-result-info {
    font-size: 0.8rem;
    color: var(--text-secondary, #94a3b8);
    padding: 8px 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 6px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.help-contacts-result-info::before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #3b82f6;
}

.help-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: var(--text-secondary, #94a3b8);
}
