/* Bootstrap list group theming */

.list-group-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-primary);
  color: var(--text-secondary);
  padding: var(--space-4) 0;
  transition: all var(--transition-fast);
}

.list-group-item:hover {
  background: var(--bg-tertiary);
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  border-radius: var(--radius-md);
}

.list-group-item:last-child {
  border-bottom: none;
}

.list-group-flush .list-group-item {
  border-left: none;
  border-right: none;
}

