/* .pagination-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 20px 0;
  list-style: none;
  padding: 0;
}

.page-btn {
  display: flex; 
  align-items: center;
  justify-content: center;
  width: fit-content !important; 
  height: 36px;
  padding: 0 12px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1;
  box-sizing: border-box;
}


.page-btn.active {
  background: #4483f9;
  border-color: #4483f9;
  color: #fff;
  font-weight: 600;
}


.page-btn.disabled {
  background: #f8f9fa;
  color: #999;
  border-color: #ddd;
  cursor: not-allowed;
} */
.pagination-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0px;
  list-style: none;
  padding: 0;
}

/* 공통 버튼 */
.page-btn {
  /* display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #ddd;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  color: #8d8a8a;
  font-size: 14px;
  line-height: 1;
  box-sizing: border-box; */

  width: 35px;
  height: 35px;
  border: 1px solid #eeede5;
  background: #ffffff;
  border-radius: 4px;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  color: #9a9a9a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn.prev-btn,
.page-btn.next-btn {
  width: 50px;
}

/* 현재 페이지 */
.page-btn.active {
  /* background: transparent;
  border-color: #44443a;
  color: #44443a;
  font-weight: 700; */

  background: #4a7856;
  color: #eeede5;
}

/* Prev/Next 비활성 */
.page-btn.disabled {
  background: #f8f9fa;
  color: #999;
  border-color: #ddd;
  cursor: not-allowed;
}

/* 화살표 아이콘 여백 보정(선택) */
.page-btn.icon {
  padding: 0 10px;
}
