/* LAUNCH BUTTON */
.launchButton {
  height: 5vh;
  width: 100%;
  border-radius: 10px;
  padding: 0px 20px 0px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: var(--button-bg);
  color: black;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition-duration: 0.2s;
  border:none;
  font-weight : bold;
  font-size: 15px;
}
.launchButton:hover {
  background: var(--button-hover);
}


/* CONFIRM BUTTON */
.confirmButton {
  background-color: var(--button-bg);
  color:black !important;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
  width: fit-content;
  text-align: center;
  transition-duration: 0.2s;
  border:none;
}
.confirmButton p {
  color: black !important;
}
.confirmButton:hover {
  padding: 10px 40px;
  background: var(--button-hover);
}

/* ADD BUTTON */
.addButton {
  width: fit-content;
  height: 5vh;
  background-color: #254848;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition-duration: 0.2s;
  border:none;
  padding: 10px 20px;
}
.addButton:hover {
  background: var(--header-footer-bg);
}

/* CANCEL BUTTON */
.cancelButton {
  height: 5vh;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: #254848;
  transition-duration: 0.2s;
  cursor: pointer;
}
.cancelButton:hover {
  background: var(--header-footer-bg);
}

/* DELETE BUTTON */
.deleteButton {
  height: 5vh;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: #C04A4A;
  transition-duration: 0.2s;
  cursor: pointer;
}
.deleteButton:hover {
  background: #A53B3B;
}






/* SHORT BUTTON */
.shortButton {
  height: 5vh;
  background-color: var(--button-bg);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding: 0px 20px;
  width: fit-content;
  margin: 0 auto;
}
.shortButton h4 {
  color: black !important;
}
.shortButton p {
  color: black !important;
}

/* HOVER */
.hover {
  transition-duration: 0.2s;
  cursor: pointer;
}
.hover:hover {
  opacity: 0.8;
}
