@charset "utf-8";

/**
 * 게시판 목록/글보기 공통 액션바 — 라벨 노출 + Quantum 톤
 */

.sp-board-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(14, 28, 52, 0.92), rgba(6, 12, 24, 0.96));
  box-sizing: border-box;
}

.sp-board-toolbar__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  color: #94a3b8;
  font-size: 13px;
}
.sp-board-toolbar__meta strong {
  color: #e2e8f0;
  font-weight: 700;
}
.sp-board-toolbar__chkall {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: #cbd5e1 !important;
  cursor: pointer;
}
.sp-board-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-board-toolbar__actions > li {
  position: relative;
  margin: 0;
}

.sp-board-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  background: rgba(15, 23, 42, 0.85) !important;
  color: #e0f2fe !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none !important;
}
.sp-board-btn span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  color: inherit !important;
}
.sp-board-btn i {
  font-size: 13px;
  color: inherit !important;
}
.sp-board-btn:hover {
  border-color: rgba(251, 191, 36, 0.65) !important;
  color: #fffbeb !important;
  transform: translateY(-1px);
}
.sp-board-btn--primary {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.38), rgba(14, 116, 144, 0.88)) !important;
  border-color: rgba(56, 189, 248, 0.6) !important;
  color: #f0f9ff !important;
}
.sp-board-btn--ghost {
  background: rgba(15, 23, 42, 0.75) !important;
}

.sp-board-toolbar .buttons_more .more {
  right: 0;
  left: auto;
  min-width: 140px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: #0f172a;
  border-radius: 10px;
  overflow: hidden;
  z-index: 20;
}
.sp-board-toolbar .buttons_more .more button,
.sp-board-toolbar .buttons_more .more a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  color: #e2e8f0;
  background: transparent;
  border: 0;
  font-size: 13px;
  cursor: pointer;
}
.sp-board-toolbar .buttons_more .more button:hover,
.sp-board-toolbar .buttons_more .more a:hover {
  background: rgba(56, 189, 248, 0.12);
  color: #fde047;
}

/* 글보기 액션 — 라벨 노출 */
.bo_view .view_buttons,
#bo_v_top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.bo_view .view_buttons > li,
#bo_v_top > li {
  margin: 0;
}
.bo_view .view_buttons .btn span.blind,
#bo_v_top .btn span.blind,
.bo_view .view_buttons a span.blind {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
}
.bo_view .view_buttons .btn,
#bo_v_top .btn,
#bo_v_top a.btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  min-height: 36px !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

/* 하단 푸터 글쓰기 아이콘만 있던 자리도 라벨형으로 */
.bo_list .list_footer .btn_b01 span.blind,
.bo_list .list_footer a.btn span.blind {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
}
.bo_list .list_footer .btn_b01,
.bo_list .list_footer a.btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px !important;
  border-radius: 999px !important;
}

@media (max-width: 640px) {
  .sp-board-toolbar {
    padding: 10px 12px;
  }
  .sp-board-btn {
    padding: 0 12px !important;
    font-size: 12px !important;
  }
}
