/*
 * メインレイアウト
 */
.navbar {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/*
 * ナビバー
 */
.navbar-logo {
  width: 1.2em;
  vertical-align: text-top;
}

.app-name {
  font-family: 'Roboto Condensed', sans-serif;
}

/*
 * ボタン
 */
 .btn>.badge {
  font-size: 11px;
  margin-top: 2px;
  margin-left: 1px;
  padding: 2px 5px;
  vertical-align: text-top;
}

.btn>.progress {
  height: 8px;
  margin-top: 2px;
  margin-bottom: 1px;
}

/*
 * テーブル
 */
.tb-col-id {
  width: 1%;
}

.tb-col-icon-button {
  width: 1%;
}

.tb-col-date {
  width: 5%;
}

/*
 * サイドバー
 */
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  /* ナビゲーションバーの背面 */
  padding: 77px 0 0;
  /* ナビゲーションバーの高さ */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
  position: relative;
  height: calc(100vh - 77px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto;
  /* ビューポートがコンテンツより短い場合、スクロール可能なコンテンツ */
}

@media (max-width: 767.98px) {
  .sidebar-sticky {
    height: calc(100vh - 100px);
  }
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav-link {
  font-weight: 500;
  color: #333;
}

.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999;
}

.sidebar .nav-link.active {
  color: #18bc9c;
  font-weight: bold;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

.input-group>.input-group-button {
  border: 1px solid #ced4da;
}

.table-responsive::-webkit-scrollbar {
  height: 10px;
}

.table-responsive::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #F1F1F1;
}

.table-responsive::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #C1C1C1;
}

.form-select::-webkit-scrollbar {
  width: 10px;
}

.form-select::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #F1F1F1;
}

.form-select::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #C1C1C1;
}

.div-scroll::-webkit-scrollbar {
  width: 10px;
}

.div-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #F1F1F1;
}

.div-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #C1C1C1;
}

/*
 * 画像選択
 */
.form-img-select {
  max-width: 100%;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  border: 3px solid #ced4da;
  border-radius: 0.5rem;
  overflow: hidden;
}

.form-img-select:hover {
  border: 3px solid #18bc9c;
}

.form-img-select img {
  max-width: 100%;
}