@charset "UTF-8";
/* 모달 컨테이너 */
.modal-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  animation: slideUp 0.3s ease;
}

.modal-container.active {
  display: flex;
  flex-direction: column;
}

/* 모달 헤더 */
.modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #333;
}

/* 모달 본문 */
.modal-body {
  padding: 25px;
  overflow-y: auto;
  flex: 1;
  line-height: 1.8;
  color: #333;
}

.modal-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #222;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin-bottom: 15px;
  font-size: 14px;
}

.modal-body ul {
  margin: 10px 0 15px 20px;
}

.modal-body li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* 애니메이션 */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/*# sourceMappingURL=modal.css.map */
