.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.5);
  overflow: hidden;
  z-index: 1000;
}

.modal-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/images/test_background.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: -1;
}

.modal {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

button {
  background-color: #214b35;
  color: white;
}

button:hover {
  background-color: #f6ac37;
}
