/* === CITYCELL HELP & DOCUMENTATION MODULE === */

.help-center-layout {
    display: flex;
    gap: 30px;
    height: 100%;
}

.help-sidebar {
    width: 280px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-nav-item {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.help-nav-item:hover {
    background: var(--bg-body);
    color: var(--text-dark);
}

.help-nav-item.active {
    background: var(--primary-soft);
    color: var(--primary);
}

.help-content-display {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow-y: auto;
}

/* Lightbox Master Override */
#modal-lightbox.active {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 50000 !important;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Documentation Content */
.help-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.help-text {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 25px;
}