/* General styling */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f2f2f2;
}

.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Dropdown menu and quantity input styling */
select,
input[type="number"] {
  width: auto;
  padding: 8px 12px;
  background-color: #ffffff;
  border: 1px solid #b3d1ff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  appearance: none;
  cursor: pointer;
  text-align: center;
  text-align-last: center;
}

select:first-of-type {
  margin-right: 25px;
}


/* Button styling */
button {
  padding: 8px 16px;
  background-color: #4a8dd8;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

button:hover {
  background-color: #3a6fa1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Remove button styling */
.remove-button {
  width: 24px;
  height: 24px;
  background-color: #bbbbbb;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  border-radius: 4px;
}

.remove-button:hover {
  background-color: #9e9e9e;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table th,
table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

table th {
  background-color: #d9e6ff;
  font-weight: bold;
}

table tbody tr:nth-child(even) {
  background-color: #f6faff;
}

ul {
  list-style: none;
  padding-left: 0;
}

/* Save & Submit button styling */
button.save-submit {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background-color: #4c9aff;
  color: white;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 16px;
}

/* Hover state */
button.save-submit:hover {
  background-color: #3c85d6;
}

/* Active state */
button.save-submit:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transform: translateY(1px);
}
