/* #cityDropdown {
  width: 120px;
  padding: 8px;
  height: 50px;
}

#searchBar {
  width: 250px;
  padding: 8px;
  height: 50px;
}

#searchButton {
  padding: 8px;
  cursor: pointer;
  height: 50px;
} */

#suggestionsList {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  /* top: 60px; */
  background: #fff;
  border: 1px solid #ccc;
  display: none;
  z-index: 1000;
}
@media (max-width: 480px) {
  #suggestionsList {
    top: 110px;
    width: 50dvw;
    left: 25dvw;
  }
}
@media (min-width: 480px) {
  #suggestionsList {
    top: 65px;
    width: 30dvw;
    left: 120px;
  }
}

#suggestionsList .category {
  font-weight: bold;
  margin: 5px 0;
  padding: 5px;
  background: #f0f0f0;
}

#suggestionsList li {
  padding: 8px;
  cursor: pointer;
}

#suggestionsList li:hover {
  background-color: #e8e8e8;
}

#itemsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #f7f7f7;
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}
.item {
  padding: 10px;
}
.item.hidden {
  display: none;
}

.proj-card {
  height: auto;
}

.proj-img {
  aspect-ratio: 1.25;
}

.btn-primary {
  cursor: pointer;
  background-color: #2e3192;
  color: #fff;
  border: none;
  transition: 0.4s;
}

.btn-primary:hover {
  background-color: #2e3192;
  color: white;
}

@media (max-width: 480px) {
  .search-box {
    top: 50dvw;
  }
}
@media (min-width: 480px) {
  .search-box {
    top: 18dvw;
  }
}

.search-box {
  position: absolute;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  text-align: center;
}

.search-container {
  display: inline-block;
  text-align: center;
}

.search-container {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 5px;
  height: 65px;
  margin: 0 auto;
}

.city-dropdown {
  border: none;
  background-color: transparent;
  font-size: 14px;
  padding: 5px 10px;
  outline: none;
  cursor: pointer;
}

.search-bar {
  flex: 1;
  width: 50dvw;
  /* max-width: 500px; */
  border: none;
  padding: 5px 10px;
  font-size: 14px;
  outline: none;
}

.search-bar::placeholder {
  color: #aaa;
}

.search-button {
  border: none;
  background-color: #2e3192;
  color: white;
  padding: 5px 15px;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.search-button:hover {
  background-color: #2e3192;
  color: #e74e1b;
}

.search-container select:focus,
.search-container input:focus {
  outline: none;
}

.filterby {
  border-radius: 0;
  color: #2e3192;
}
.filter-group {
  border: #2e3192 1px solid;
}

.modal-a {
  text-decoration: none;
  transition: all 0.1s;
}

element.style {
    overflow-x: hidden;
}
.overflow-hidden {
    overflow: hidden !important;
}
 .table-container {
      background-color: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .table-builder th {
      background-color: #007bff;
      color: white;
      text-align: center;
      vertical-align: middle;
    }
    .table-builder tbody tr:nth-child(even) {
      background-color: #f2f2f2;
    }
    .table-builder tbody tr:hover {
      background-color: #eaf4ff;
    }
    .table-builder td, th {
      white-space: nowrap;
      vertical-align: top;
    }
    .table>:not(caption)>*>* {
    padding: 1rem 1rem;
    color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}