.dark-background{
  background-image: url(/static/images/Hangout/CreativeHangout8.jpg);
}
.hidden{
  display: none;
}
.section{
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
body {
    font-family: 'lato', sans-serif;
  }
  .container-table{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    margin-top: 0px;
  }
  
  h2 {
    font-size: 26px;
    margin: 20px 0;
    text-align: center;
    small {
      font-size: 0.5em;
    }
  }
  
  .responsive-table {
    /* display: none; */
    li {
      border-radius: 3px;
      padding: 25px 30px;
      display: flex;
      justify-content: space-between;
      margin-bottom: 25px;
    }
    .table-header {
      background-color: #D7E7B6;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .table-row {
      background-color: #ffffff;
      box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
    }
    .col-1 {
      flex-basis: 10%;
    }
    .col-2 {
      flex-basis: 40%;
    }
    .col-3 {
      flex-basis: 25%;
    }
    .col-4 {
      flex-basis: 25%;
    }
    
    @media all and (max-width: 767px) {
      .table-header {
        display: none;
      }
      .table-row{
        
      }
      li {
        display: block;
      }
      .col {
        
        flex-basis: 100%;
        
      }
      .col {
        display: flex;
        padding: 10px 0;
        &:before {
          color: #6C7A89;
          padding-right: 10px;
          /* content: attr(data-label); */
          flex-basis: 50%;
          text-align: right;
        }
      }
    }
  }








/* 
form {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s;
  width: 50px;
  height: 50px;
  background: white;
  box-sizing: border-box;
  border-radius: 4px;
  border: 4px solid white;
  padding: 5px;
  margin-bottom: 30px;
  width: 80%;
  position: relative;
}

input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42.5px;
  line-height: 30px;
  outline: 0;
  border: 0;
  font-size: 1em;
  border-radius: 20px;
  padding: 0 20px;
}

.fa {
  box-sizing: border-box;
  padding: 10px;
  width: 42.5px;
  height: 42.5px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 4px;
  color: #07051a;
  text-align: center;
  font-size: 1.2em;
  transition: all 1s;
}
form:focus-within,
form:hover,
form:valid{
  width: 200px;
  cursor: pointer;
}

form:hover input,
form:focus-within input,
form:valid input {
  width: 100%;
} 

form:hover .fa,
form:focus-within .fa,
form:valid .fa {
  background: #07051a;
  color: white;
}

button {
  display: none;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 20px;
  color: white;
  padding: 4px;
  min-height: max-content;
  background: transparent;
  outline: 0;
  border: 1px solid #303030;
  border-radius: 4px;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

form:valid button {
  display: block;
} */
form {
  position: relative;
  top: 50%;
  /* left: 50%; */
  width: 100%; /* Set a fixed width */
  height: 50px;
  background: white;
  box-sizing: border-box;
  border-radius: 4px;
  border: 4px solid white;
  padding: 5px;
  margin-bottom: 30px;
}

input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Keep this as is */
  height: 42.5px;
  line-height: 30px;
  outline: 0;
  border: 0;
  font-size: 1em;
  border-radius: 20px;
  padding: 0 20px;
}

.fa {
  box-sizing: border-box;
  padding: 10px;
  width: 42.5px;
  height: 42.5px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 4px;
  color: white;
  text-align: center;
  font-size: 1.2em;
}

form:focus-within,
form:hover,
form:valid {
  /* Remove width change and keep cursor pointer */
  cursor: pointer;
}

form:hover input,
form:focus-within input,
form:valid input {
  /* No longer animating width */
}

form:hover .fa,
form:focus-within .fa,
form:valid .fa {
  background: #198754 ; /* Keep color change, no animation */
  color: white;
}
button {
  background-color: #198754 ;
  border: 1px solid #198754 ;
  border-radius: 4px;
  cursor: pointer;
}




.searchBox {
  display: flex; /* Use flexbox for the search box */
  align-items: center; /* Center items vertically */
  width: 100%; /* Full width of the parent */
  max-width: 400px; /* Set a maximum width for the search bar */
  margin: 0 auto; /* Center the search box */
}

.searchButton {
  flex: 1; /* Allow input to grow */
  margin-right: 10px; /* Space between input and button */
}

.fa {
  /* Add styles for the search icon button */
}