/* Juniper v6.3.1 - Smart Features Preview Styles */

.agent-section {
  margin-bottom: 18px;
}

.agent-section h4 {
  font-size: 0.85rem;
  color: var(--accent-secondary);
  margin-bottom: 10px;
}

.agent-description {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
  padding: 8px;
  background: var(--bg-input);
  border-radius: 8px;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--bg-secondary);
  border-radius: 8px;
  margin-bottom: 6px;
}

.setting-info {
  flex: 1;
}

.setting-label {
  font-size: 0.85rem;
}

.setting-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--bg-input);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  border: none;
}

.toggle-switch.active {
  background: var(--accent-success);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s;
}

.toggle-switch.active::after {
  left: 25px;
}

.setting-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.setting-chip {
  padding: 6px 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
}

.setting-chip.active {
  background: rgba(107,155,90,0.25);
  border-color: var(--accent-success);
  color: var(--accent-success);
}
