body {
  background: #2e2e2e;
  font-family: sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #E2D5D0;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 8px;
}

.row input, .row select {
  padding: 0.4rem;
  border-radius: 4px;
  border: none;
  outline: none;
  flex: 1;
}

.remove-btn {
  background: #A24C44;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
}

.add-btn {
  width: 80%;
  padding: 0.6rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 20px;
  background: #5D713D;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}