/* This backdrop adds the soft gray background and blurry effect */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Soft gray overlay */
  backdrop-filter: blur(8px); /* Apply blur effect to the background */
  z-index: 1040; /* Keep it behind the modal content */
}

/* Modal container that holds the modal dialog */
.modal-container {
  position: relative;
  z-index: 1050; /* Ensure the modal content is on top of the backdrop */
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
