.modal-veil {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 30, 55, 0.3);
  z-index: 999;
}

.modal-container {
  width: 288px;
  position: fixed;
  top: 30%;
  left: 42%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal-content {
  min-width: 288px;
  background: white;
  box-shadow: 0px 12px 22px rgba(1, 30, 55, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-body {
  width: 288px;
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-height: 400px;
  overflow-y: scroll;
}

.modal-icon {
  width: 100%;
  padding: 8px 0 16px 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  font-weight: 300;
  color: #1E96FC;
  min-height: 60px;
}

.modal-title {
  width: 100%;
  text-align: center;
  color: #011E37;
  font-size: 20px;
  font-family: Outfit;
  font-weight: 700;
  line-height: 24px;
}

.modal-message {
  width: 100%;
  text-align: center;
  color: #3A4A69;
  font-size: 16px;
  font-family: Nunito;
  font-weight: 400;
  line-height: 20px;
}

.modal-footer {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
}

.modal-close-button {
  flex: 1;
  height: 48px;
  padding: 12px;
  background: #1E96FC;
  color: white;
  font-size: 16px;
  font-family: Outfit;
  font-weight: 600;
  line-height: 20px;
  border: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  cursor: pointer;
}

.modal-body i{
  flex: 1 1 0; 
  text-align: center; 
  color: var(--Colors-Text-Blue, #1E96FC); 
  font-size: 48px; 
  font-family: Font Awesome 6 Pro; 
  font-weight: 300; 
  word-wrap: break-word;
}