#editor {
  display: flex;
  align-items: center;
}

#editorOn {
  flex-grow: 1;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  margin-right: 10px;
}

.confirm-button, .decline-button {
  border: none;
  border-radius: 5px;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.confirm-button {
  background-color: green;
}

.decline-button {
  background-color: red;
}

/* Custom styles for the table */

/* Table */

#products {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

/* Table Header */

#products th {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: left;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

/* Table Body */

#products td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* Alternate Row Colors */

#products tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Hover Effect */

#products tbody tr:hover {
  background-color: #e6e6e6;
}

