.info-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden; /* 스크롤 숨기기 */
  width: 372px;

  padding: 0 4px;
  box-sizing: border-box; /* 패딩을 포함하여 크기를 계산 */
  position: relative;
}

.info-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid #fff; /* 패딩 영역을 흰색으로 */
  pointer-events: none; /* 클릭 이벤트 무시 */
  box-sizing: border-box;
}

.map-container {
  flex: 7; /* 7/10 영역 차지 */
  overflow: hidden; /* 스크롤 숨기기 */
}

.flex-grow-1 {
  display: flex;
  flex-direction: row;
  height: 100%;
  overflow: hidden; /* 스크롤 숨기기 */
}

#sitesTable {
  flex-grow: 1;
  width: 100%;
  user-select: none; /* 텍스트 선택 비활성화 */
  font-size: 0.85em; /* Datatable 내부 글자 크기를 줄임 */
}

.dataTables_wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dataTables_scrollBody {
  flex-grow: 1;
  overflow: auto; /* 내부 스크롤 허용 */
}

.dataTables_paginate {
  display: flex;
  justify-content: center; /* 중앙 정렬 */
  align-items: center;
  flex-grow: 0;
  margin-top: auto;
}

.dataTables_empty {
  text-align: center;
}

.status-circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-left: 5px;
  vertical-align: middle;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  margin: 0;
  padding: 0.5em 1em;
  border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  color: white !important;
  background-color: #007bff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  background-color: #0056b3 !important;
}

#sitesTable tbody tr td, #sitesTable thead tr th {
  text-align: center; /* 중앙 정렬 */
  vertical-align: middle;
}

.break-line {
  display: block;
}

/* 검색창 스타일 */
.dataTables_filter {
  display: flex;
  align-items: center;
}

.dataTables_filter label {
  margin-right: 10px;
}

.dataTables_filter input {
  height: 1.5em; /* 검색창 높이 줄이기 */
  padding: 0.2em 0.5em;
  border: 1px solid #ced4da;
  border-radius: 0.25em;
}

/* 선택된 행 스타일 */
#sitesTable tbody tr.selected {
  background-color: #134B70 !important; /* 선택된 행의 배경색 변경 */
  color: white !important; /* 선택된 행의 텍스트 색상 변경 */
}
