/* ===========================================
   HELP CTA BUTTON — Session Panel
   Sits above the search row where Groups CTA used to live
   =========================================== */

.help-cta-row {
    padding: 10px 16px 0;
    background: var(--bg-color);
}

.help-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-md, 8px);
    background: var(--surface, rgba(255, 255, 255, 0.03));
    color: var(--text-primary, #e4e4e7);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.help-cta-btn i {
    font-size: 1.05rem;
    color: var(--accent, #3bf692);
}

.help-cta-btn:hover {
    background: var(--surface-hover, #1a1a1d);
    border-color: rgba(59, 246, 146, 0.25);
}

.help-cta-btn:active {
    transform: scale(0.98);
}

/* Desktop — slightly tighter padding */
@media (min-width: 769px) {
    .help-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ===========================================
   LIGHT THEME OVERRIDES
   =========================================== */
html.light-theme .help-cta-btn {
    background: #fafafa;
    border-color: #e4e4e7;
    color: #18181b;
}

html.light-theme .help-cta-btn:hover {
    background: #f4f4f5;
    border-color: rgba(26, 171, 138, 0.35);
}

html.light-theme .help-cta-btn i {
    color: var(--accent, #1aab8a);
}
