  body {
    background-color: #fff;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-size:14px;
  }
  .container{
    position: relative;
    width:100%;
    margin-top:30px;
    /*
    margin-left:auto;
    margin-right: auto;
    */
  }
  .verticalChart {
    width: 100%;
  }
  .verticalChart .singleBar {
    width: 15%;
    float: left;
    margin-right: 2%;
	margin-left: 2%;
    margin-top: 10px;
  }
  .verticalChart .singleBar .bar {
    position: relative;
    height: 400px;
    background: #d5d5d5;
    overflow: hidden;
    border: 1px solid #9b9b9b;
  }
  .verticalChart .singleBar .bar .value {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #2D89EF;
    color: #2D89EF;
  }
  .verticalChart .singleBar .bar .value span {
    position: absolute;
    font-size: 14px;
    bottom: 200px;
    width: 100%;
    height: 20px;
    color: #fff;
    /*text-shadow: 0px -1px 0px #fff, 0px 1px 0px #fff, 1px 0px 0px #fff, -1px 0px 0px #fff, -1px -1px 0px #fff, -1px 1px 0px #2D89EF, 1px 1px 0px #fff, 1px -1px 0px #fff;*/
    display: none;
    text-align: center;
  }

  .verticalChart .singleBar .title {
    margin-top: 5px;
    text-align: center;
    color: #0473f1;
  }

  .verticalChart .singleBar .subtitle {
    margin-top: 5px;
    text-align: center;
    /*color: #2D89EF;*/
    color: #66a5ee;
  }

  #loader {
    position: absolute;
    display: none;
    left: 50%;
    top: 300px;
    z-index: 3;
    width: 50px;
    height: 50px;
    margin: -76px 0 0 -45px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  .colClass{width:100%;float:left;margin-bottom:10px}
  .aClass {color: #676867; text-decoration: none; margin-left: 5px;}
  .aClass:hover {color: #181818;  text-decoration: underline; margin-left: 5px;}


  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }
  
  .updatedAtCls
  {
    text-align: right;
    width:96%;
    font-size:14px;
    color: #686868;
  }

 

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 5px;
  right: 25px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.fullScreenBtnClass
{
  position: absolute;
  top: 50px;
  right: 25px;
  color: #202020;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  border:1px solid #e8e8e8;
  background-color: #fff;
}

.fullScreenBtnClass:hover,
.fullScreenBtnClass:focus {
  background-color: #c5c5c5;
  text-decoration: none;
  cursor: pointer;
}

.reportDivClass{width:98%;padding-top:20px}


@media only screen and (max-width: 600px)
{
  .verticalChart .singleBar .title {font-size:12px;}
  .verticalChart .singleBar .bar {height:300px}
  .reportDivClass{margin-top:390px;}
  .colClass{width:100%;float:left;}
  .modal-content {width: 100%;}
  .container{width: 100%;}
}

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 550px; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

.report_button {
  background-color: #fff;
  border: none;
  color: black;
  padding: 8px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 4px;
  transition-duration: 0.4s;
  cursor: pointer;
  border: 1px solid #9b9b9b;
}

.report_button:hover {
  background-color: #9b9b9b;
  color: white;
}

.history_button {
  background-color: #b4f593;
  border: none;
  color: black;
  padding: 8px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 4px;
  transition-duration: 0.4s;
  cursor: pointer;
  border: 1px solid #9b9b9b;
  width:180px;
}

.history_button:hover {
  background-color: #54c71a;
}

.close_history_button {
  background-color: #fff;
  border: none;
  color: black;
  padding: 8px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 4px;
  transition-duration: 0.4s;
  cursor: pointer;
  border: 1px solid #9b9b9b;
  width:180px;
}

.close_history_button:hover {
  background-color: #9b9b9b;
  color: white;
}

/* Table CSS */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

thead {
  background-color: #444;
  color: #fff;
}

th, td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

tbody tr:nth-child(even) {
  background-color: #f0f0f0;
}

tbody tr:hover {
  background-color: #e0e0e0;
}
/*
td:last-child {
  font-weight: bold;
  color: #000;
}
*/

    @media (max-width: 768px) {
      table, thead, tbody, th, td, tr {
        display: block;
      }

      th {
        background-color: #007ACC;
        color: white;
        text-align: left;
      }

      td {
        text-align: left;
        padding: 10px;
        border-bottom: 1px solid #ddd;
      }

      td:before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #555;
      }
    }