.demo-containerSta {
    box-sizing: border-box;
    width: 100%;
    height: 600px;
    padding: 20px 10px 10px 10px;
    margin: 10px auto 10px auto;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.302));
    overflow: visible;
    border-radius: 50px 50px 50px 50px;
}

.table thead tr th {
    /* Important */
    background-color: white;
    position: sticky;
    z-index: 100;
    top: 0;
}

.demo-placeholderSta {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    width: 98%;
    height: 98%;
    font-size: 18px;
    line-height: 1.6em;
    overflow-y: auto;
}

.demo-placeholderSta_L {
            display: flex;
            flex-direction: column;
            width: 98%;
            height: 98%;
            font-size: 18px;
            line-height: 1.6em;
            /* prevent the entire container from scrolling */
            overflow: hidden;
}


.text-black-50 {
    color: rgba(0, 0, 0, 0.1) !important;
}

.demo-placeholderSta .canvas_holder {
    overflow: auto;
    width: 100%;
    height: 50%;
    margin: 10px auto 10px 10px;
}

.table_cell {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    margin: 0px auto 0px auto;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.102));
    overflow: visible;
    border-radius: 5px 5px 5px 5px;
}

.table_cell:hover {
    transform: scale(1.05);
}

.table_cell:active {
    transform: scale(1);
    box-shadow: inset 0 0 10px 1px rgba(0, 0, 0, .2);
}

.bus_cell_all {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  text-align: center;
  cursor: pointer;
  margin: 0px auto 0px auto;
  border: 1px solid #ddd;
  background: #f0f0f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.102));
  overflow: visible;
  border-radius: 5px 5px 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bus_cell_all:hover {
  transform: scale(1.05);
}

.bus_cell_all:active {
  transform: scale(1);
  box-shadow: inset 0 0 10px 1px rgba(0, 0, 0, 0.2);
}



#overlay_sta {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

#popup_sta {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  z-index: 10000;
  width: 70vw;
  height: 60vh;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  display: none;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.302));
  border-radius: 30px 30px 30px 30px;
}

#popup-body_sta::-webkit-scrollbar {
  width: 10px;
}

#popup-body_sta::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

#popup-body_sta::-webkit-scrollbar-thumb {
  background-color: #888;
}

#popup-body_sta::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

#popup-header_sta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 10%;
  margin-bottom: 20px;
}

#closeButton_sta {
  border: none;
  background-color: transparent;
  font-size: 40px;
  cursor: pointer;
}

#popup-footer_sta {
  text-align: center;
  margin-top: -70px;
}

.footer-button_sta {
  padding: 10px 20px;
  font-size: 15px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

.footer-button_sta.active {
  background-color: #d0d0d0;
}

.footer-button_sta:hover {
  background-color: #d0d0d0;
}

.popup-body_sta {
  margin-top: 20px;
  max-height: 90%;
}

#slider_sta{
  height:  41vh;
  overflow-y: auto;
  overflow-x: auto;
}




#myTable_sta thead th {
  position: sticky;
  top: 0;
  background-color: #f1f1f1;
  font-weight: bold;
}

#myTable_sta {
  border-collapse: collapse;
  width: 100%;
  color: black;
}

#myTable_sta th,
#myTable_sta td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

#myTable_sta th {
  background-color: #f2f2f2;
  font-weight: bold;
}

#myTable_sta tr:hover {
  background-color: #f5f5f5;
}

#myTable_sta td:nth-child(even) {
  background-color: #f2f2f2;
}
