@charset "UTF-8";

 /* 모달 배경 */
.modal-overlay {
  display: none; /* 기본은 숨김 */
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* 모달 내용 */
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 1000px;
  text-align: center;
}

.close-button {
  margin-top: 10px;
  cursor: pointer;
  color: white;
  background: #333;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
}