/* [한글 주석] 게시판 상·하단 툴바 버튼 전용 스타일입니다.
 * 기능: 리스트/웹진/포토 게시판의 목록/다음/쓰기 버튼을 한 계열로 유지합니다.
 * 위치: /assets/css/board-toolbar.css
 */

/* [한글 주석] 게시판 툴바 기본 버튼 규격을 통일합니다. */
.zyss-board .zyss-board__action-group--toolbar .zyss-board__btn,
.zyss-board .zyss-board__bottom-actions .zyss-board__action-group--toolbar .zyss-board__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  min-width: 80px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 8px !important;
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

/* [한글 주석] 툴바 전용 쓰기 버튼도 목록 버튼과 완전히 같은 디자인으로 강제합니다. */
.zyss-board .zyss-board__action-group--toolbar .zyss-board__btn--write,
.zyss-board .zyss-board__bottom-actions .zyss-board__action-group--toolbar .zyss-board__btn--write {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35) !important;
}

/* [한글 주석] 툴바 버튼 공통 hover 상태입니다. */
.zyss-board .zyss-board__action-group--toolbar .zyss-board__btn:hover,
.zyss-board .zyss-board__bottom-actions .zyss-board__action-group--toolbar .zyss-board__btn:hover,
.zyss-board .zyss-board__action-group--toolbar .zyss-board__btn--write:hover,
.zyss-board .zyss-board__bottom-actions .zyss-board__action-group--toolbar .zyss-board__btn--write:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.45) !important;
}

/* [한글 주석] 비활성 다음 버튼은 예외적으로 흐리게 유지합니다. */
.zyss-board .zyss-board__action-group--toolbar .zyss-board__btn--disabled,
.zyss-board .zyss-board__action-group--toolbar .zyss-board__btn[aria-disabled="true"],
.zyss-board .zyss-board__bottom-actions .zyss-board__action-group--toolbar .zyss-board__btn--disabled,
.zyss-board .zyss-board__bottom-actions .zyss-board__action-group--toolbar .zyss-board__btn[aria-disabled="true"] {
  background: rgba(17, 17, 17, 0.55) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  transform: none !important;
}
