body {
    width: 100%;
    font-family: "lato", sans-serif;
    background-image: url(background_linkomp.webp);
    /* background-image: url(/Images/background_blur.png); */
    background-size:cover; 
    background-attachment: fixed;
    background-position: bottom;
  }

  html {
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: transparent;
}

  .container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
  h1 {
    font-size: 39px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
  }
  h2 {
    font-size: 26px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
  }
  h2 small {
    font-size: 0.5em;
  }
  .transparent {
    background-color: #43c0ffa4 !important;
  }
  .gray {
    background-color: #fbfbff59 !important; 
  }
  .green {
    background-color: #76e68e59 !important;
  }
  .yellow {
    background-color: #e0e26259 !important;
  }
  .blue {
    background-color: #63b5ce59 !important;
  }

  .responsive-table {
      padding: 0;
  }
  
  .responsive-table li {
    border-radius: 3px;
    padding: 5px 30px;
    display: flex;
    justify-content: space-between;
    
  }
  .responsive-table .table-header {
    color: white;
    font-weight: 600;
    background-color: #43c0ff;
    padding: 10px 30px;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .responsive-table .table-row {
    background-color: #ffffff;
    /* box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1); */
    border-bottom: 2px solid rgba(107, 107, 107, 0.103);
  }
  .responsive-table .col-1 {
    flex-basis: 10%;
  }
  .responsive-table .col-2 {
    flex-basis: 70%;
  }
  .responsive-table .col-3 {
    flex-basis: 10%;
  }
  .responsive-table .col-4 {
    font-weight: 600;
    flex-basis: 10%;
  }

  

  @media all and (max-width: 650px) {
    .responsive-table .col-1 {
      flex-basis: 10%;
    }
    .responsive-table .col-2 {
      flex-basis: 60%;
    }
    .responsive-table .col-3 {
      flex-basis: 15%;
    }
    .responsive-table .col-4 {
      flex-basis: 15%;
    }
    .responsive-table {
        padding: 10px;
    }
  }

  @media all and (max-width: 450px) {
    .responsive-table .table-header{
      display: none;
    }
  }
