/* color.css: 색상 변수 정의 및 전체 요소에 색상 적용 */

/* 기본 테마 (Light Mode) */
:root {
  --table-bottom-line: 1px solid #E9ECEF;
}

/* 다크 모드 예시 (data-theme="dark"로 전환) */
.dark-mode {
  --table-bottom-line: 1px solid #444;
}

#theme-table tbody td,
#issue-table tbody td {
  border-bottom: var(--table-bottom-line);
}

#issue-table .threshold {
  position: relative; /* pseudo-element의 위치를 위한 설정 */
}
#issue-table .threshold::after {
  content: "";
  position: absolute;
  top: 10px;             /* 위쪽 5px 간격 */
  right: 0;
  height: calc(100% - 20px); /* 전체 높이에서 위/아래 5px씩 제외 */
  border-right: var(--table-bottom-line);
}
