h1 {
  text-decoration: underline;
}
.buttonRow {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.removeButton,
.addButton {
  width: 45%;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.removeButton {
  background-color: #d9534f;
  color: white;
}

.addButton {
  background-color: #5cb85c;
  color: white;
}
.buttonRow {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.removeButton,
.addButton {
  flex: 1;

  padding: 24px;

  font-size: 24px;

  font-weight: bold;

  border: none;

  border-radius: 12px;

  color: white;

  cursor: pointer;
}

.removeButton {
  background: #c62828;
}

.addButton {
  background: #2e7d32;
}
.menuButton {
  width: 100%;

  padding: 25px;

  font-size: 28px;

  font-weight: bold;

  border: none;

  border-radius: 12px;

  cursor: pointer;

  background: #2e7d32;

  color: white;
}

.dashboardCard {
  margin-top: 40px;

  padding: 20px;

  border-radius: 12px;

  background: #eeeeee;

  text-align: left;
}
.clickableCard {
  cursor: pointer;

  transition: 0.2s;
}

.clickableCard:hover {
  transform: scale(1.02);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.labelCard {
  padding: 30px;

  border: 2px solid black;

  border-radius: 12px;

  margin-top: 20px;

  text-align: center;

  background: white;
}
