
.fed-confirmation-dialog-hidden {
  display: none;
}

#fedConfirmationDialog {
  position: fixed; /* Fixed position */
  z-index: 1000000; /* Sit on top of everything else on the page */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scrolling if needed */
  background-color: rgba(0,0,0,0.4); /* Black background with opacity */
  padding-top: 15%; /* Location of the box */
  text-align: center; /* Center the content */
}

#fedConfirmationDialog .fed-confirmation-dialog-content {
  background-color: #fefefe;
  margin: auto;
  padding: 30px;
  border: 1px solid #888;
  width: auto;
  max-width: 500px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#fedConfirmationDialog button {
  background-color: #4CAF50; /* green */
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

#fedConfirmationDialog button:hover {
  background-color: #45a049; /* Darker green */
}

#noButton {
  background-color: #f44336; /* red */
}

#noButton:hover {
  background-color: #d32f2f; /* Darker red */
}


@media (max-width: 767px) {

  #fedConfirmationDialog {
    padding-top: 70%;
    z-index: 1000000;
  }

  #fedConfirmationDialog .fed-confirmation-dialog-content {
    margin-left: 10px;
    margin-right: 10px;
    padding: 30px;
  }

}
