.responsive-card-table {
  border-collapse: collapse;
}

.responsive-card-table.unstriped tbody {
  background-color: transparent;
}

.responsive-card-table th {
  background-color: #e6e6e6;
}

.responsive-card-table tr,
.responsive-card-table th,
.responsive-card-table td {
  border: 1px solid #0a0a0a;
}

.panel-body.sub_widgits {
  padding: 10px 0px;
}

#clearrootparams {
  display: block;
  margin: 0 auto;
  padding: 0;
  text-transform: capitalize;
}

@media screen and (max-width: 640px) {
  .responsive-card-table thead tr {
    position: absolute;
    top: -9999em;
    left: -9999em;
  }

  .responsive-card-table tr {
    border: 1px solid #0a0a0a;
    display: block;
  }

  .responsive-card-table tr+tr {
    margin-top: 1.5rem;
  }

  .responsive-card-table td {
    border: none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #0a0a0a;
    padding-left: 50%;
    position: relative;
  }

  .responsive-card-table td:before {
    content: attr(data-label);
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;
    margin-left: -100%;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .responsive-card-table td:after {
    content: '';
    position: absolute;
    background: #e6e6e6;
    width: 45%;
    height: 95%;
    left: 1px;
    top: 1px;
    z-index: 0;
  }
}

.skiptranslate {
  visibility: hidden !important;
  display: none !important;
  overflow: hidden !important;
}

/*.esri-popup__main-container{
  height: 300px !important;
  max-height: 400px !important;
  width: 600px !important;
}*/

/* .sidenav a:hover {
  color: #ffff00;
} */

/* --- start by Sahil -----*/
#tbhead {
  border: 1px solid black;
}

#tbhead th {
  border: 1px solid #fff;
  padding: 20px;
  background-color: #110675;
  color: #fff;
}

#tbdata {
  border: 1px solid black;
}

#tbdata tr td {
  border: 1px solid black;
  padding: 8px;
}

.btntbview {
  background-color: #110675;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  width: 100%;
  padding: 10px;
}

#tbview {
  height: 400px;
  width: 100%;
  overflow: scroll;
}

#tbview thead th {
  position: sticky;
  top: 0;
}

/* #showbtn button:hover{
  color:#093;
} */

/* #loadingContainer { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 9999; 
  text-align: center; 
  padding-top: 20%; 
} */

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #110675;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* --- end by Sahil -----*/


/* ///////24/01/2025/////// */


#mainStationContainer {
  position: relative;
  /* Makes it possible to position the loader inside it */
  /* height: 400px;  */
  border: 1px solid #ccc;
}



/* Container to hold both chart and table side by side */
#containerStation {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  /* background-color: lightblue; */

}



@media screen and (max-width: 1000px) {
  #containerStation {
    display: block;
  }

  /* Chart container */
  #chartContainer {
    width: 100% !important;
  }

  /* Chart container */
  #chartContainer {
    width: 100% !important;
  }

}

/* Chart container */
#chartContainer {
  width: 39%;
  height: 400px;
}

/* Table container */
#tableContainer {
  width: 59%;
  overflow-y: scroll;
  height: 400px;
}

#tableContainer table {
  width: 100%;
  border-collapse: collapse;
}

#tableContainer table th,
td {
  padding: 8px 12px;
  text-align: left;
  border: 1px solid #ddd;
}

#tableContainer table thead th {
  position: sticky;
  top: 0;
  padding: 10px;
  background-color: #110675;
  color: #fff;
}





.spinning {
  font-size: 30px;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* Center the spinner loader in the middle of maincontainer */
#graphLoader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* //////////////24/01/2025///////////// */


/* //////////////////////////28/01/2025////////// */

.date-filter-container {
  display: none;
  margin-bottom: 10px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}


.date-filter-container button {
  width: 48%;
  padding: 10px;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
}

.date-filter-container button#applyButton {
  background-color: #4CAF50;
  /* Green */
}

.date-filter-container button#applyButton:hover {
  background-color: #45a049;
}

.date-filter-container button#clearButton {
  background-color: #f44336;
  /* Red */
}

.date-filter-container button#clearButton:hover {
  background-color: #e53935;
}




/* ////////////////28/01/2025//////////////? */