@import url("style.css");

/* modal.css */
.modal {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 30px;
  position: relative;
  z-index: 12;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.modal-content div {
  padding-top: 30px;
  padding-inline: 20px;
  padding-bottom: 10px;
}

.modal-content span {
  padding-right: 10px;
  color: var(--dark-blue);
  font-size: xx-large;
}

.modal-content p {
  color: var(--darker-blue);
}

.modal-content a {
  color: var(--dark-blue);
  text-decoration: underline wavy var(--dark-blue) !important;
  line-height: 2.0;
}


/* Estilos para o modal QRCode */
#qrcode-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#qrcode-modal .modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 30px;
  position: relative;
}

#qrcode-modal .modal-content img {
  width: 80%;
  height: auto;
}

#qrcode-modal .close {
  position: absolute;
  z-index: 12;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

#confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: none;
  justify-content: center;
  align-items: center;
}

#confirmation-modal .pix-title-span {
  padding-right: 10px;
  font-size: larger;
  text-decoration: underline wavy 2px var(--soft-green-blue-color);
}

#confirmation-modal p {
  line-height: 30px;
}

#confirmation-modal strong {
  color: var(--soft-green-blue-color);
}