@charset "UTF-8";
.wide-region-polygon {
  fill: none;
  stroke: #000;
  stroke-width: 3px;
}

.region-text {
  font-family: Pretendard-Regular-KSCpc-EUC-H, Pretendard;
  font-size: 9px;
}

.region-polygon {
  fill: transparent;
  stroke: black;
  stroke-width: 1px;
}

.region-polygon.has-data {
  fill: #dcc3f4;
}
.region-polygon.has-data:hover {
  fill: #b896d7;
}

.wide-plot-box .research-container .research-table .flex {
  width: 100%;
}
.wide-plot-box .gicho-title {
  font-weight: 600;
  font-family: "mbcnew-bold";
  font-size: 24px;
  text-align: center;
}
.wide-plot-box .plot-container {
  display: none;
}

.svg-container {
  position: relative;
  text-align: center;
}

.new-c {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid white;
  background-color: rgb(120, 78, 236);
  border-radius: 50%;
  top: 0;
}

.select-container {
  display: flex;
}

/* CSS */
.select-box {
  /* 1. 기본 브라우저 스타일 초기화 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 2. 크기 및 여백 설정 */
  width: 140px; /* 원하는 너비로 조절하세요 */
  padding: 8px 16px; /* 우측 여백(36px)은 화살표 아이콘을 위한 공간입니다 */
  /* 3. 폰트 및 텍스트 스타일 */
  font-family: "mbcnew-medium";
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.87); /* 머티리얼 기본 텍스트 색상 */
  /* 4. 배경, 테두리, 모서리 둥글기 */
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.38); /* 머티리얼 기본 테두리 색상 */
  border-radius: 4px;
  /* 5. 커스텀 드롭다운 화살표 아이콘 (SVG Base64) */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(0,0,0,0.54)'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  /* 6. 인터랙션을 위한 전환 효과 */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.select-box:hover {
  border-color: rgba(0, 0, 0, 0.87);
}
.select-box:focus {
  outline: none;
  border-color: #6200ee; /* 머티리얼 기본 테마 색상 (보라색), 원하는 색으로 변경하세요 */
  /* border 두께가 늘어나면서 레이아웃이 밀리는 것을 방지하기 위해 안쪽 그림자 사용 */
  box-shadow: inset 0 0 0 1px #6200ee;
}
.select-box:disabled {
  background-color: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.38);
  border-color: rgba(0, 0, 0, 0.12);
  cursor: not-allowed;
}

.select-container {
  display: flex;
  gap: 6px; /* 요소들 사이의 간격 */
  align-items: center;
  justify-content: center;
  /* 3. 선택 버튼 스타일 (머티리얼 Contained Button) */
}
.select-container .select-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  background-color: #9371f0;
  color: #ffffff;
  font-family: "mbcnew-medium";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px; /* 머티리얼 버튼 특유의 자간 */
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* 텍스트 드래그 방지 */
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.select-container {
  /* 버튼 Hover 상태 */
}
.select-container .select-button:hover {
  background-color: #6a49c6;
}
.select-container {
  /* 버튼 클릭(Active) 상태 */
}
.select-container .select-button:active {
  transform: scale(0.98); /* 클릭 시 살짝 눌리는 효과 */
}/*# sourceMappingURL=gicho.css.map */