/* vacation-modal.css */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 12px;
  color: white;
  max-width: 400px;
  width: 90%;
}
