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

.container {
  background-color: white;
  padding: 2rem;
  border-radius: 5px;
  width: 800px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  background-color: #cce;
  padding: 1rem;
  margin: -2rem -2rem 1rem -2rem;
}

.section {
  margin-bottom: 1rem;
}

.row {
  display: flex;
  gap: 1rem;
}

.row .section {
  flex: 1;
}

input, select, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.icons img {
  height: 32px;
  margin-right: 10px;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#cancel {
  background-color: #555;
  color: white;
}

#send {
  background-color: #007bff;
  color: white;
}

#error, #alert {
  color: white;
  background-color: #d9534f;
  padding: 1rem;
  border-radius: 4px;
  display: none;
  margin-bottom: 1rem;
}
