/* ================================
   📘 Dashboard UI 공통 스타일
   ================================ */

body {
  font-family: "Noto Sans KR", sans-serif;
}

.sidebar-scroll {
  max-height: none;
  /* 전체 페이지 스크롤에 맞춤 */
  overflow-y: visible;
  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: #666 #1f1f1f;
}

/* 스크롤바 (크롬/엣지 전용) */
.sidebar-scroll::-webkit-scrollbar {
  width: 6px;
}

.sidebar-scroll::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 6px;
}

/* 프로그램 리스트 아이템 */
.sidebar-scroll li {
  transition: background-color 0.2s ease;
}

.sidebar-scroll li:hover {
  background-color: #2a2a2a;
}

/* 버튼 공통 스타일 */
.btn-success,
.btn-primary {
  border-radius: 10px;
  font-weight: 600;
  padding: 2px 10px;
}

/* 뱃지 스타일 */
.badge {
  font-size: 0.75rem;
  padding: 4px 6px;
}