/* organisation_confirm.css */

/* Container styling */
.organisation-confirm {
  font-family: "Inter", Arial, sans-serif;
  max-width: 320px;
  margin: 6rem auto;
  text-align: center;
  color: #00071a;
}

.organisation-confirm p {
  margin: 0.5rem 0;
}

/* Button layout */
.confirm-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

/* Button styling */
.confirm-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

/* Yes button colours */
#confirm-yes {
  background-color: #654cf5;
  color: #fff;
}

#confirm-yes:hover {
  background-color: #0c13e0;
}

/* No button colours */
#confirm-no {
  background-color: #d8d7de;
  color: #00071a;
}
