html,
body {
font-family: Arial, sans-serif;
overflow: hidden;
margin: 0px;
padding: 0px;
height: 100%;
}

#projectDetailsDiv{
  height:  48%;
  width: 0%;
  z-index: 1;
  position: fixed;
  top: 11%;
  transition: width 0.7s ease; /* Smooth transitions */ 
}

#projectDetailsDiv.open {
  width: 100%; /* Adjust to match the content's height */
}

#slidebar{
    background-color: #dddddd;
    z-index: 1;
    position: absolute;
    top: 10.5%;
    height: 90%;
    width: 0%;
    opacity: 0;
    box-shadow: 0px 0px 15px 3px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content:center;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-y:scroll; 
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    transition: width 0.5s ease, opacity 0.5s ease; /* Smooth transitions */ 
}
#slidebar.open {
    width:  15%; /* Adjust to match the content's height */
    opacity: 1; /* Fully visible */
  }

#slidebarForSpeckle{
  background-color: #dddddd;
  z-index: 1;
  position: absolute;
  top: 10.5%;
  height: 90%;
  width: 0%;
  opacity: 0;
  box-shadow: 0px 0px 15px 3px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content:center;
  flex-direction: row;
  flex-wrap: wrap;
  overflow-y:scroll; 
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  transition: width 0.5s ease, opacity 0.5s ease; /* Smooth transitions */ 
}

#slidebarForSpeckle.open{
  width:  15%; /* Adjust to match the content's height */
  opacity: 1; /* Fully visible */
}


.chart-container{
    background-color: #dddddd;
    z-index: 1;
    position: absolute;
    top: 10.5%;
    right: 0;
    height: 90%;
    width: 0%;
    opacity: 0;
    box-shadow: 0px 0px 15px 3px;
    /* border-radius: 25px; */
    overflow: visible;
    overflow-y:scroll;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    transition: width 0.5s ease, opacity 0.5s ease; /* Smooth transitions */

}


.chart-container.open {
    width:  30%; /* Adjust to match the content's height */
    opacity: 1; /* Fully visible */
  }

#costChart{
  z-index: 1;
  position: absolute;
  top: 10.5%;
  right: 30%;
  height: 60%;
  width: 0%;
  opacity: 0;
  box-shadow: 0px 0px 10px 0px;
  /* border-radius: 25px; */
  overflow: visible;
  overflow-y:scroll;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  transition: width 0.5s ease, opacity 0.5s ease; /* Smooth transitions */
}

#costChart.open {
  width:  30%; /* Adjust to match the content's height */
  opacity: 1; /* Fully visible */
}

.Piechart-container{
  background-color: #dddddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 35%;
  margin: 4% auto;
  overflow: visible;
}



.seriesMainDiv{
  background-color: #a8a8a8;
  height: 25%;
  display: flex;
  justify-content:space-around;
  overflow: visible;
}

.chartjs-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 3px;
  padding: 5px;
  pointer-events: none;
  transform: translate(-50%, 0);
  white-space: normal; /* Allow line wrapping */
  max-width: 200px; /* Limit the tooltip width */
  z-index: 100;
  font-size: 12px; /* Adjust font size if needed */
  line-height: 1.4; /* Improve readability */
}

.seriesSubDiv{
  height: 100%;
  width: 33%;
  overflow:visible;
}


.bar-container {
  display: flex;
  align-items: center;
  margin: 4% 0;
}

.label {
  width: 15%;
  text-align: right;
  margin-right: 3%;
  font-weight: bold;
  font-weight: bold;
  font-size: 23px; /* Increase text size */
}

.bar-with-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.bar {
  background: linear-gradient(#38973b, #4caf50);
  border: 1px solid #196e1c;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: bold;
  transition: 0.3s;
  padding: 0 10px;
  box-sizing: border-box;
}

.bar:hover {
  background-color: #02c00c;
}

.percentage {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
}

.in-progress {
  margin-top: 5px;
  font-size: 14px;
  color: #555;
  font-style: italic;
  word-wrap: break-word; /* Allow text to wrap to the next line */
  word-break: break-word; /* Break word when necessary */
  white-space: normal; /* Allow multiple lines */
}

.floors-completed {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-left: 10px;
  white-space: nowrap;
}

.buttons { 
    position: relative;
    background: linear-gradient(#8d8d8d,#616161);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 40%;
    margin: 10px;
    
}

.buttonsS { 
  position: relative;
  background: linear-gradient(#218496,#184252);
  border: none;
  border-radius: 10px;
  color: white;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  width: 40%;
  margin: 10px;
}
#DashButton { 
    z-index: 1;
    position: absolute;
    top: 50px;
    right: 10px;
    background: linear-gradient(#22c3eb,#2b83a3);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    height: auto;
    width: auto; 
}

#CostPiechartButton{
  z-index: 1;
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(#22c3eb,#2b83a3);
  border: none;
  border-radius: 10px;
  color: white;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  height: auto;
  width: auto; 
}

#zoomToBTN{
    z-index: 1;
    position: absolute;
    top: 3px;
    left: 10px;
    background: linear-gradient(#22c3eb,#2b83a3);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    height: auto;
    width: auto; 
}
#project_details_btn{
  z-index: 1;
  position: absolute;
  top: 3px;
  left: 155px;
  background: linear-gradient(#22c3eb,#2b83a3);
  border: none;
  border-radius: 10px;
  color: white;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  height: auto;
  width: auto; 
}

#Toggle-PointCloud{
  z-index: 1;
  position: absolute;
  top: 50px;
  left: 145px;
  background: linear-gradient(#22c3eb,#2b83a3);
  border: none;
  border-radius: 10px;
  color: white;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  height: auto;
  width: auto; 
}

#hideBLDG{
  z-index: 1;
  position: absolute;
  top: 50px;
  left: 10px;
  background: linear-gradient(#22c3eb,#2b83a3);
  border: none;
  border-radius: 10px;
  color: white;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight:bold;
  height: auto;
  width: auto; 
}

#Speckle{
  z-index: 1;
  position: absolute;
  top: 3px;
  left: 300px;
  background: linear-gradient(#22c3eb,#2b83a3);
  border: none;
  border-radius: 10px;
  color: white;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  height: auto;
  width: auto; 
}



.cesium-infoBox {
  top: 10% !important;  /* Distance from bottom */
  right: 20px !important;   /* Distance from right */
  bottom: auto !important;
  left: auto !important;
  width: auto;             /* Adjust width if needed */
  max-height: auto;        /* Adjust height if needed */
}


