.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.modal-container {
  background: #00949a;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.close-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background: #f4e0c8;
  color: #412a29;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .modal-container {
    width: 80%;
    height: 80%;
    border-radius: 12px;
  }
}
