.ccnai-chart-controls {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 0 20px 10px;
}

.ccnai-toggle-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ccnai-toggle-switch {
    width: 44px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.ccnai-toggle-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.ccnai-toggle-thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    transition: left 0.2s ease;
}

.ccnai-toggle-thumb.left {
    left: 2px;
}

.ccnai-toggle-thumb.right {
    left: 22px;
}

.ccnai-toggle-label {
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

.ccnai-toggle-label.active {
    color: #1d1e23;
    font-weight: 600;
}
