/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/modals.css
 * @description: 모달 창 관련 스타일
 * @components: 모달 컨테이너, 헤더, 내용, 닫기 버튼
 * @usage: 팝업 다이얼로그 인터페이스 스타일링
 */
/* 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: #fff;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* ===== COMPONENTS STYLES ===== */
/**
 * @file: components/modals.css
 * @description: 모달 닫기 버튼 스타일
 * @components: 닫기 버튼
 */
.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 1;
}

.close:hover {
  color: #1a73e8;
}
