:root {
    --primary-color: #197e6c;
    --primary-text-colour: #294946;
    --secondary-text-colour: #4a5251;
    --secondary-bg-color: #e7f4fe;
    --secondary-fg-color: #01c1df;
    --underline-color: #98B8B4;
  }


.table-container{
    overflow-x: scroll;
    margin-bottom: 7vh;
    padding-bottom: 20px;
}
  
.data-table-light{
    font-family: "Poppins", sans-serif;
    min-width: 800px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;

   border: 1px solid var(--primary-color);
}

.data-table-light thead{
    background-color: var(--primary-color);
    /*border: 1px solid var(--primary-color);*/
    
    
}

.data-table-light thead th{
    /*border-right: 1px solid var(--primary-color);*/
    color: white;
    padding: 20Px;
    font-size: 18px;
    text-align: left;

}
.data-table-light tbody td{
    border-bottom: 1px solid var(--primary-color);
    font-family: "Noto Sans", sans-serif;
    padding: 20px;
    font-size: 14px;
    color: var(--secondary-text-colour);

}

.data-table-light tbody tr:hover{
    background-color: #f2f2f2;
}


.hike-and-surges{
    margin-top: 7vh;
    margin-bottom: 7vh;
    background-color: var(--secondary-bg-color);
    border-radius: 10px;

    padding: 2vh;
}

.hike-and-surges h2, h3{
    margin: 0;
    padding: 0;
    padding: 5px;
    
    
}

.surge-logo{
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.surge-logo-text{
    padding-top: 2vh;
    display: flex; gap: 20px; align-items: center;
}


#scrollToPriceListButton {
    display: none;
    position: fixed;
    height: 50px;
    width: 50px;
    background-color: #197e6c;
    color: white;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    border-radius: 1vh;
    cursor: pointer;
  }
  
  #scrollToPriceListButton.show {
    display: flex;
    align-items: center;
    justify-content: center;
  }