.bi {
  display: inline-block;
  width: 1rem;
  height: 1rem;
}

/*
 * Sidebar
 */

@media (min-width: 768px) {
  .sidebar .offcanvas-lg {
    position: -webkit-sticky;
    position: fixed;
    top: 48px;
  }
  .navbar-search {
    display: block;
  }
}

.sidebar .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
}

.sidebar .nav-link.active {
  color: #2470dc;
}

.sidebar-heading {
  font-size: 0.75rem;
}

/*
 * Navbar
 */

.navbar-brand {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
}

.navbar .form-control {
  padding: 0.75rem 1rem;
}

/*-------------*/
/* tooltip 설정 */
/*-------------*/
.custom-tooltip {
  position: absolute;
  display: none;
  background-color: rgba(51, 51, 51, 0.95);
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 6px;
  pointer-events: none;
  white-space: normal;
  max-width: 300px;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/*----------*/
/* 결과 테이블 */
/*----------*/
.result-table {
  width: 100%;
  /*  max-height: 500px; /* 원하는 높이 지정 */
  max-height: 60vh; /* 브라우저 높이의 70% */
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.result-table tr {
  max-height: 10vh;
}
.result-table td:nth-child(1) {
  /* width: 10%; */
  text-align: center;
}
.result-table td:nth-child(2) {
  /* width: 10%; */
  text-align: center;
}

/*-----------------*/
/* 테이블 설정 */
/*-----------------*/

table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
th {
  background-color: #9b6bfa;
  color: white;
  text-align: center;
  position: sticky;
  top: 0;
}

.no-border-table {
  border: none;
}

.no-border-table td {
  border: none;
}

.resizer {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  cursor: col-resize;
  z-index: 1;
}

/*-----------------*/
/* 버튼 색상 설정 */
/*-----------------*/

.btn-bd-primary {
  --bd-violet-bg: #9b6bfa;
  --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-violet-bg);
  --bs-btn-border-color: var(--bd-violet-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #6528e0;
  --bs-btn-hover-border-color: #6528e0;
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #5a23c8;
  --bs-btn-active-border-color: #5a23c8;
}
