.effect-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.effect-item:hover {
  border-color: rgba(0, 255, 204, 0.4);
  background: rgba(0, 0, 0, 0.3);
}

.effect-item.disabled {
  opacity: 0.6;
}

.effect-item.disabled .effect-settings {
  pointer-events: none;
}

.effect-expand-btn,
.effect-remove-btn {
  background: none;
  border: 1px solid rgba(0, 255, 204, 0.3);
  color: var(--accent);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.effect-expand-btn:hover {
  background: rgba(0, 255, 204, 0.1);
  border-color: var(--accent);
  transform: scale(1.05);
}

.effect-remove-btn {
  border-color: rgba(255, 68, 68, 0.4);
  color: #ff4444;
}

.effect-remove-btn:hover {
  background: rgba(255, 68, 68, 0.1);
  border-color: #ff4444;
  transform: scale(1.05);
}

.effect-settings {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 255, 204, 0.1);
}

.effect-settings label {
  color: var(--fg);
  font-size: 0.9rem;
}

.effect-settings input[type="range"] {
  width: 100%;
  margin-top: 0.25rem;
}

.effect-settings select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid rgba(0, 255, 204, 0.25);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--fg);
  font-size: 0.9rem;
}

.effect-settings select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 255, 204, 0.2);
}