@font-face {
  font-family: "General Sans Semi Bold";
  src: url(fonts/GeneralSans-Semibold.otf);
}

@font-face {
  font-family: "General Sans Regular";
  src: url(fonts/GeneralSans-Regular.otf);
}

  html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  }

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

h1 {
  font-family: "General Sans Semi Bold";
  margin: 0;
  margin-top: 20px;
  font-size: 35px;
  color: white;
}

h3 {
  font-family: "General Sans Regular";
  margin-left: 0;
  margin-right: 450px;
  color: white;
}

.navbar {
  background-color: transparent;
  font-family: "General Sans Semi Bold";
}

.navbar a {
  float: right;
  display: block;
  color: white;
  text-align: center;
  padding: 22px 60px 0 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #0cce6b;
  cursor: pointer;
}

#hero-banner {
  background-color: black;
  background-size: cover;
  background-position: center;
}

.content {
  padding-left: 66px;
  padding-top: 70px;
  padding-bottom: 40px;
}


hr {
  width: 92%;
  margin-top: 30px;
}

footer {
  font-family: "General Sans Semi Bold";
  padding: 30px;
  margin-left: 30px;
}

.project-link {
  float: right;
  margin-right: 26px;
}

.project-link a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}

.project-link a:hover {
  color: #0cce6b;
}

.dropdown-container {
  display: flex;
  width: 100%;
  padding: 30px;
  justify-content: center;
  margin-top: 40px;
}

select {
  width: 170px;
  padding: 13px; 
  margin: 10px; 
  background-color: rgb(234, 234, 234);
  border: none;
  font-family: "General Sans Semi Bold";
  border-radius: 5px;
  cursor: pointer;
}

.section-info {
  display: flex;
  align-items: center;
  height: 40px;
}

.area {
  font-family: "General Sans Regular";
  margin-right: 20px;
  background-color: #0cce6b;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  color: black;
}

.cuisine {
  font-family: "General Sans Regular";
  margin-right: 20px;
  background-color: #0cce6b;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  color: black;
}

.price {
  margin-right: 20px;
  font-family: "General Sans Regular";
  background-color: #0cce6b;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  color: black;
}
  .results-table {
      width: 80%;
      margin: 20px auto;
      box-shadow: 0 2px 5px rgba(0,0,0,0.15);
      border-collapse: separate;
      border-spacing: 0;
      border-radius: 8px;
      overflow: hidden;
  }
  .results-table th, .results-table td {
      background-color: white;
      padding: 30px;
      text-align: left;
  }
  .results-table th {
      background-color: black;
      color: #0cce6b;
      font-family: "General Sans Semi Bold";
  }

  .results-table td {
      font-family: "General Sans Regular";
      transition: background-color 0.3s ease;
  }

  .results-table tr:hover {
      cursor: pointer;
      background-color: #f4f4f4; 
      position: relative;
  }

  .results-table tr:hover td {
      background-color: #0cce6b;
  }

  .results-table a:hover {
      background-color: black;
  }

button {
  margin-top: 10px;
  height: 45px;
  padding: 0 15px;
  margin-left: 10px; 
  background-color: #0cce6b; 
  border: none;
  border-radius: 5px; 
  cursor: pointer; 
  font-family: "General Sans Semi Bold"; 
  }

  button:hover {
  background-color: #09a057; 
  }

  .button-warning {
      text-decoration: none;
      margin-right: 15px;
      height: 45px;
      padding: 10px;
      background-color: #0cce6b; 
      color: white; 
      border: none;
      border-radius: 5px; 
      cursor: pointer; 
      font-family: "General Sans Semi Bold"; 
  }

  .button-danger {
      text-decoration: none;
      height: 45px;
      padding: 10px;
      background-color: #0cce6b; 
      color: white; 
      border: none;
      border-radius: 5px; 
      cursor: pointer; 
      font-family: "General Sans Semi Bold"; 
  }

  p {
    color: white;
    font-family: "General Sans Regular";
  }

  .aggregate-sql {
    margin-top: 50px;
  }

  .pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    font-family: "General Sans Semi Bold";
}

.pagination a {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination .active {
    background-color: #0cce6b;
    color: black;
    font-family: "General Sans Semi Bold";
}