/* ===== VIEWS STYLES ===== */
/**
 * @file: views/shared/category.css
 * @description: 카테고리 선택기 스타일
 * @components: 선택기 레이아웃, 그룹, 드롭다운
 * @usage: 카테고리 선택기 요소의 스타일링
 */
#categorySelectors {
  position: relative;
  background: white;
  padding: 15px 15px 10px 15px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#categorySelectors .province-city-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#categorySelectors select {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 150px;
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9em;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

#categorySelectors select:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
  outline: none;
}

/* ===== SHARE STYLES ===== */
/**
 * @file: shared/category.css
 * @description: 읍면동 버튼 컨트롤 스타일
 * @components: 읍면동 버튼 컨트롤
 * @usage: 읍면동 버튼 컨트롤 스타일링
 */
.township-buttons-controls {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ===== SHARE STYLES ===== */
/**
 * @file: shared/category.css
 * @description: 확장/축소 버튼 스타일
 * @components: 확장/축소 버튼
 * @usage: 확장/축소 버튼 스타일링
 */
#expandTownshipBtn, #collapseTownshipBtn {
  background: white;
  border: 1px solid #e0e0e0;
  width: 32px;
  height: 32px;
  padding: 4px;
  color: #1a73e8;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#expandTownshipBtn:hover, #collapseTownshipBtn:hover {
  background: #f5f5f5;
  border-color: #1a73e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

#expandTownshipBtn .material-icons-round,
#collapseTownshipBtn .material-icons-round {
  font-size: 24px;
}

#expandTownshipBtn::before,
#collapseTownshipBtn::before {
  content: none;
}
