Spaces:
Running
Running
| .analysis-help-panel { | |
| position: absolute; | |
| top: 12px; | |
| right: 12px; | |
| width: 250px; | |
| bottom: 12px; | |
| background: var(--surface); | |
| border: 1px solid var(--border); | |
| display: flex; | |
| flex-direction: column; | |
| z-index: 1200; | |
| border-radius: 12px; | |
| box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); | |
| overflow: hidden; | |
| } | |
| .analysis-help-collapsed { | |
| position: absolute; | |
| top: 12px; | |
| right: 12px; | |
| z-index: 1200; | |
| background: var(--surface); | |
| border: 1px solid var(--border); | |
| padding: 8px 12px; | |
| border-radius: 20px; | |
| font-size: 11px; | |
| font-weight: 700; | |
| color: var(--text-muted); | |
| cursor: pointer; | |
| box-shadow: 0 4px 6px rgba(0,0,0,0.05); | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| transition: all 0.2s; | |
| } | |
| .analysis-help-collapsed:hover { | |
| background: var(--surface-hover); | |
| transform: translateY(-1px); | |
| box-shadow: 0 6px 8px rgba(0,0,0,0.08); | |
| } | |
| .help-header { | |
| padding: 12px 14px; | |
| border-bottom: 1px solid var(--border); | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| background: var(--bg-soft); | |
| } | |
| .help-header h3 { | |
| font-size: 0.85rem; | |
| margin: 0; | |
| } | |
| .help-close { | |
| border: none; | |
| background: none; | |
| font-size: 18px; | |
| cursor: pointer; | |
| color: var(--text-muted); | |
| } | |
| .help-scroll { | |
| padding: 12px 14px; | |
| overflow-y: auto; | |
| flex: 1; | |
| } | |
| .help-section { | |
| margin-bottom: 16px; | |
| } | |
| .help-section h4 { | |
| font-size: 0.78rem; | |
| margin: 0 0 4px; | |
| text-transform: uppercase; | |
| color: var(--text-muted); | |
| letter-spacing: 0.05em; | |
| } | |
| .help-section p { | |
| font-size: 0.8rem; | |
| line-height: 1.5; | |
| margin: 0; | |
| color: var(--text); | |
| } | |
| .help-footer { | |
| padding: 12px 14px; | |
| background: var(--bg-soft); | |
| font-size: 0.72rem; | |
| font-style: italic; | |
| border-top: 1px solid var(--border); | |
| } | |