.editButton {
  padding: 0.5rem 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #1976d2;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}

.editButton:hover,
.editButton:focus {
  background-color: #0c407c;
  color: #e3f2fd;
  outline: none;
}