/* :root {
    --gradient: linear-gradient(rgb(235, 223, 223),rgb(151, 204, 151));
    --brand-color: #21dfe9;
    --brand-hover-color:rgb(25, 183, 25);
    --primary-heading-color:black;
    --secondary-heading-color:red;
    --header-footer-backround-color: #343734;
    --primary-text-color: #444;
    --secondary-text-color: #ccc;
    --secondary2-text-color: #fff;
    --table-baground-color:#1a1a1a;
} */
.rate-home{
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: url(../img/ratebanner.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}
.rate-home .text p{
    text-align: justify;
}
.text h1{
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 700;
}
.text span{
    color: var(--brand-hover-color);
}
.text p{
    margin: 00.rem;
}
.app-store{
    display: flex;
}
.app-stores img{
    width: 100px;
    margin-right: 1rem;
    cursor: pointer;
}


@media (max-width: 881px){
    .rate-home{
        background-position: left;
    }
}
@media (max-width: 871px){
    .text h1{
        font-size: 1.5rem;
        margin-top: 10px;
    }
    .rate-home{
        grid-template-columns:1fr
    }  
}
/* Start Rate list */
/*----rate list text-------*/
.ratelist h1{
    color: var(--brand-hover-color);
    text-align: center;
}
.ratelist p {
    text-align: justify;
}
/*----trateli table-------*/
.trateli 
{
    color: var(--secondary2-text-color);
}
.table-h{
    max-height: 900px;
    overflow-y: scroll;
    overflow-x: auto;

}
table {

    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 70px;
    background-color: var(--table-baground-color);
  }
  th, td {
    border: 0.3px solid  var(--secondary2-text-color);
    text-align: left;
    padding: 0.5px;
  }
  th {
    background-color: var(--brand-hover-color);
    position: sticky;
    top: 0px;
    text-align: center;
    border: 2px;
  }
  .sub-heading-particular-color{
    color: var(--secondary-heading-color);
    font-weight: 600;
    text-align: center;
  }
.th, td:hover{
    background-color: rgba(91, 93, 88, 0.954);
}

@media screen and (max-width: 700px) {
    table th {
      font-size: 14px;
    }
    table td {
      font-size: 14px;
    }
    table td:before {
      content: attr(data-label);
      font-weight: bold;
      width: 90%;
      margin-left: -1px;
      text-align: left;
    }
    .table-h {
        max-height: 600px;
        overflow-y: scroll;
        overflow-x: auto;
    }
  }
/* End Rate list */



/* Search Bar Styles */
.search-container {
    margin: 20px 0;
    display: flex;
    justify-content: flex-end;
  }
  
  .search-container input[type="text"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }
  
  .search-container button {
    background-color: #004B93;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    margin-left: 5px;
    display: flex;
    align-items: center;
  }
  
  .search-container button i {
    margin-right: 5px;
  }
  
  .search-container button:hover {
    background-color: #0f67aa;
  }
  
  /* Responsive Design for Small Devices */
    @media (max-width: 768px) {
      .search-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
      }
    
      .search-container input[type="text"] {
        width: 100%;
        margin-bottom: 10px;
      }
    
      .search-container button {
        width: 100%;
        justify-content: center;
        margin-left: 0;
      }
    }
    
    @media (max-width: 480px) {
      .search-container input[type="text"] {
        font-size: 14px;
        padding: 8px;
      }
    
      .search-container button {
        font-size: 14px;
        padding: 8px;
      }
    }
      
/* Toggle Button Styles */
.toggle-rate-list-container {
    margin: 10px 0;
  }
  
  .toggle-rate-list-container button {
    padding: 8px;
    background-color: #004B93;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .toggle-rate-list-container button:hover {
    background-color: #0f67aa;
  }
  
  /* Initially hide the rate list */
  #rateListSection {
    display: none;
  }
  
  