.process-dropdown {
  text-align: center;
}

.plot-dropdown {
  width: max-content;
  text-align: center;
}

.cell-dropdown {
  width: min-content;
}

.dropdown-menu.show {
  gap: 10px;
  border-radius: 6px;
  opacity: 0px;
  font-family: Source Sans Pro;
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2%;
  text-align: left;
  color: rgba(210, 213, 216, 1);
  background: rgba(66, 85, 99, 1);
}

.dropdown-item {
  color: rgba(210, 213, 216, 1);
  font-family: Source Sans Pro;
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.dropdown-item::after {
  content: " "; /* Unicode for checkmark */
  margin-right: 10px; /* Space between checkmark and text */ /* Color of the checkmark */
  align-self: flex-end;
}

.dropdown-item:hover {
  color: white;
  background-color: transparent;
  font-weight: 600;
  content: "V";
}

.dropdown-item:hover::after {
  content: "✔"; /* Unicode for checkmark */
  margin-right: 10px; /* Space between checkmark and text */
  color: rgba(52, 206, 255, 1); /* Color of the checkmark */
  align-self: flex-end;
}

.dropdown-toggle.btn.btn-primary {
  width: fit-content;
  justify-content: space-between;
  display: flex;
}

.dropdown-toggle.btn.btn-primary::after {
  align-items: center;
  align-self: center;
}

.settings-dropdown-item {
  color: rgba(210, 213, 216, 1);
  font-family: Source Sans Pro;
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: fit-content;
}

.settings-dropdown .dropdown-menu.show {
  gap: 10px;
  border-radius: 6px;
  opacity: 0px;
  font-family: Source Sans Pro;
  font-size: 15px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2%;
  text-align: left;
  color: rgba(210, 213, 216, 1);
  background: rgba(66, 85, 99, 1);
}