ul {
    display: flex;
}

li {
    list-style: none;
}

.menu-bar {
    width: 100%;
    height: 70px;
    background-color: dimgray;
    padding-top: 5px;
    box-sizing: border-box;
}

.nav-link {
    display: block;
    text-decoration: none;
    /* color: white; */
    margin-right: 35px;
}

.main-navbar
.navbar{
  width: 100%;
}

.container{
  flex-grow: 1;
}

.body-title{
  padding: 10px 0px;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

#serchForm{
    background-color: aquamarine;
}

.chart-display{
   border: solid 0.5px;
   margin-top: 20px;
   margin-bottom: 30px;
}

.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
    transition: opacity 0.3s ease;
  }
  
  .modal-wrapper {
    display: table-cell;
    vertical-align: middle;
  }
  
  .modal-container {
    width: 400px;
    margin: 0px auto;
    padding: 20px 30px;
    border-radius: 16px;
    overflow: hidden;
  }
  .create-modal-container {
    width: 600px;
    margin: 0px auto;
    padding: 20px 30px;
  }

  .modal-container-layaut{
    background-color: #fff;
    border-radius: 16px;  
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    transition: all 0.3s ease;
    font-family: Helvetica, Arial, sans-serif;
  }


  .modal-header h3 {
    margin-top: 0;
    color: #42b983;
  }
  
  .modal-body {
    margin: 20px 0;
  }
  
  .modal-default-button {
    float: right;
  }
  
  /*
   * The following styles are auto-applied to elements with
   * transition="modal" when their visibility is toggled
   * by Vue.js.
   *
   * You can easily play with the modal transition by editing
   * these styles.
   */
  
  .modal-enter {
    opacity: 0;
  }
  
  .modal-leave-active {
    opacity: 0;
  }
  
  .modal-enter .modal-container,
  .modal-leave-active .modal-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }


  .well {
    background-color: #D7DBE0;
    border: 1px solid #D8D8D8;
    box-shadow:0px 0px 4px 1px rgba(0,0,0,0.1);
    -moz-box-shadow:0px 0px 4px 1px rgba(0,0,0,0.1);
    -webkit-box-shadow:0px 0px 4px 1px rgba(0,0,0,0.1);
    margin: 10px 0px 20px;
  }

  .label{
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
  }

  .label-required {
    background-color: #d9534f;
    margin-left: 5px;
  }

  .label-optional {
    background-color: #777; /* LESS: @gray-lighter */
    margin-left: 5px;
  }


  .main-footer {
  padding: 20px 30px 20px 280px;
  margin-top: 40px;
  color: #98a6ad;
  border-top: 1px solid #e3eaef;
  display: inline-block;
  width: 100%;
}
.main-footer .footer-left {
  float: left;
}
.main-footer .footer-right {
  float: right;
}

.table-title{
  margin-bottom: -10px;
}

.dt-footer-container {
  display: flex;
  justify-content: space-between; /* 要素を両端に寄せ、間を均等に配置 */
  align-items: center;            /* 要素を垂直方向の中央に揃える */
}
/* DataTablesの表示件数部分のスタイル調整 */
.dataTables_length label {
  display: flex;         /* label要素をFlexコンテナにする */
  align-items: center;   /* 中の要素を垂直方向中央に揃える */
  white-space: nowrap;   /* テキストの不要な改行を防ぐ */
}

/* セレクトボックスとテキストの間に少し余白を追加 */
.dataTables_length select {
  margin: 0 5px;
}

#facilitiesTable th,
#facilitiesTable td {
    text-align: center;
    vertical-align: middle;
}

/* .main-table{
  margin-top: 10px;
} */