.modal-cal-reminder {
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 2;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  font-family: "Apercu ";

  /* center modal */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modal Content/Box */

.modal-content-cal-reminder {
  background-color: #e7ecef;
  /* margin: 15% auto; */
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  display: flex;
  flex-direction: column;
  /* Could be more or less, depending on screen size */
}

.modal-content-cal-reminder > h1 {
  text-align: center;
}

.modal-content-cal-reminder > p {
  text-align: center;
  font-size: 30px;
}

.modal_button_div-cal-reminder {
  margin-top: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#snooze_cal_button,
#cal_goal_button {
  background-color: #1976d2;
  padding: 0.5em 1em;
  border-radius: 15px;
  font-family: "Apercu ";
  font-size: 20px;
  color: white;
}

#dismiss_cal_button,
#dismiss_goal_button {
  background-color: grey;
  padding: 0.5em 1em;
  border-radius: 15px;
  font-family: "Apercu ";
  font-size: 20px;
  color: white;
}

#dismiss_cal_button label,
#cal_goal_button label,
#snooze_cal_button label,
dismiss_goal_button label {
  cursor: inherit;
}