.btn-fot,
.btn-fot1 {
  font-size: 18px;
  margin-top: 5px;

  width: 100%;
  /* Make buttons take full width of their column */
}

/* Background color for the container */
.bg-white {
  border-radius: 10px;
  /* Optional: Add some rounding to the container */
}
.bg_yellow {
  background-color: #fffce9;
}
.search_btn_icon {
  display: none;
}
.search_btn_text {
  display: block;
}
.suggestion_item {
  text-wrap: wrap;
}
.dd_arrow {
  /* display: inline-block;
    padding: 20px;
    background-color: #3498db;
    color: #fff;
    cursor: pointer; */
  transition: transform 0.5s ease;
}

/* Optional style to rotate 90 degrees */
.rotated {
  transform: rotate(180deg);
}
.highlighted {
  background-color: #f0f0f0;
  /* Change this to your desired highlight color */
}

.suggestion_item.active {
  background-color: #ddd;
}

.suggestion_list {
  max-height: 300px;
  overflow-y: scroll;
  scrollbar-width: none;
}
.custom-tab.custom-active {
  font-weight: bold;
  color: #1a73e8 !important;
}

.suggestion_list::-webkit-scrollbar {
  display: none;
}

.red_circle {
  height: 8px;
  width: 8px;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  /* padding-left: 16px; */
  right: -13px;
}
.cont_erew {
  /* padding: 35px; */
      margin-top: -21px;
}

.suggestion_elem {
  background: white;
  top: 53px;
  border-radius: 0px 0px 10px 10px;
  width: 100%;
  box-shadow: 0px 5px 10px #f0f0f0;
}

/* homepage search bar  */
.custom-navbar {
  z-index: 1;
  position: relative;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 10px 19px rgb(37 37 37 / 23%);
  width: 70%;
  padding: 23px 20px;
  margin: 0 auto;
}
.check_elem {
  padding-left: 30px;
}
.filter-bar {
  padding: 33px 26px 5px 26px;
  border-radius: 0px 0px 12px 12px;
  box-shadow: none;
  margin-top: -10px;
  z-index: 0;
}

.custom-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.custom-tab {
  margin: 0 20px;
  font-size: 16px;
  color: #333;
  cursor: pointer !important;
  position: relative;
}

.custom-tab .custom-dot {
  height: 6px;
  width: 6px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-left: 5px;
}

.custom-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f1f3f4;
  padding: 10px;
  border-radius: 8px;
}

.custom-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.custom-dropdown .custom-arrow {
  font-size: 10px;
}

.custom-search-input {
  flex: 1;
  border: none;
  background-color: transparent;
  padding: 5px;
  font-size: 14px;
  outline: none;
}

.custom-icon {
  font-size: 18px;
  color: #1a73e8;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  background-color: #e1f5fe;
}

.custom-search-button {
  background-color: #1a73e8;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}
.filter_collapse_btn {
  display: none;
}
.custom-search-button:hover {
  background-color: #155bb5;
}
.new_project_card {
  flex-direction: column;
}
.top_btns {
  display: flex;
  flex-wrap: wrap;
}
.filter-options-container {
  overflow-x: scroll !important;
}
.sidebarContainer {
  padding: 0px;
}
.imageContainer {
  padding: 0;
}
.project_card_content {
  padding: 10px;
}
.project_card_content * {
  font-size: calc(100% - 2%); /* Reduces font size by 2px */
}
.am_badge {
  padding: 0 !important;
}
.filter_collapse_btn {
  display: block;
}
.top_checks {
  flex-wrap: wrap;
}

/* Responsive adjustments */

@media (max-width: 435px) {
    .suggestion_elem {
      width: 140% !important;
      left: -27px;
    }
  }
  @media (max-width: 1150px) {
    .search_btn_icon {
      display: block;
    }
    .search_btn_text {
      display: none;
    }
    .suggestion_item {
      font-size: 12px !important;
      padding: 4px !important;
    }
    .suggestion_elem {
      width: 114% !important;
      left: -27px;
    }
    .dd_open_text {
      display: none;
    }
    .custom-navbar {
      padding: 23px 6px;
    }
    .custom-tab {
      margin: 0 6px;
    }
    .custom-navbar {
      width: 92%;
    }
    .cont_erew {
      padding: 5px 0px;
    }
    .btn-fot,
    .btn-fot1 {
      font-size: 16px;
      margin-top: 10px;
      /* Add spacing between buttons on smaller screens */
    }
  }