.listings_table_container {
  width: 100% !important;
  display: flex;
  flex-direction: column;
}

/* === HEADER === */

.listings_header_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 20vh;
}

.listings_top_header_container {
  width: 100%;
  height: 45%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listings_top_header_container_left {
  height: 70%;
  width: 45%;
  display: flex;
  align-items: center;
}

.listings_top_header_container_left > h3 {
  font-size: 2.5rem;
}

.listing_modal_btn_wrapper {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.listings_top_header_container_right {
  height: 70%;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.listings_top_header_container_right > button,
.listing_modal_btn_wrapper > button {
  text-transform: capitalize;
  padding: 1rem 1.3rem;
  font-weight: 500;
  font-size: 1.3rem;
  color: #f2f2f2;
  background-color: #2b4b1b;
  outline: none;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 200ms ease;
}

.listings_top_header_container_right > button:hover,
.listing_modal_btn_wrapper > button {
  cursor: pointer;
  background-color: #4d8531 !important;
  border: none;
  outline: none;
}

.listings_top_header_container_right > button span {
  margin-left: 0.3rem;
  font-weight: 500;
  font-size: 1.3rem;
  color: #f2f2f2;
}

.listings_bottom_header_container {
  width: 100%;
  height: 45%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listings_bottom_left_header_container {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.listings_search_wrapper,
.listings_date_filter_wrapper {
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e0e2e7;
  background-color: #ffffff;
  border-radius: 0.5rem !important;
}

.listings_date_filter_wrapper {
  margin-right: 4rem;
  padding: 0 1rem !important;
}

.listings_search_wrapper > i {
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 500;
  color: #667085;
  cursor: pointer;
}

.listings_search_wrapper > input {
  width: 80%;
  font-size: 1.5rem !important;
  font-weight: 500;
  color: #667085;
  border: none !important;
  outline: none !important;
  background-color: transparent !important;
}

.listings_bottom_right_header_container {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.listings_date_filter_wrapper input {
  font-size: 1.5rem;
  color: #667085 !important;
  border: none !important;
  outline: none !important;
  background-color: transparent !important;
}

.listings_columns_filter_wrapper {
  width: 10rem;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: inline-block;
  border: 1px solid #e0e2e7;
  background-color: #ffffff;
  border-radius: 0.5rem !important;
}

.listings_columns_filter_icon_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.2rem;
  cursor: pointer;
}

.listings_columns_filter_wrapper > div > span {
  font-weight: 500;
  font-size: 1.5rem;
  color: #667085;
}

.listings_columns_filter_wrapper i {
  margin-right: 1rem !important;
  font-size: 1.5rem;
  color: #667085;
  cursor: pointer;
}

.listings_columns_filter_dropdown_menu {
  position: absolute;
  right: 0.1rem;
  background-color: white;
  min-width: 15rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 3;
  border-radius: 0.4rem;
  overflow: hidden;
}

.listings_columns_filter_dropdown_menu a {
  color: #2b4b1b;
  padding: 1.2rem 1.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  display: block;
}

.listings_columns_filter_dropdown_menu a:hover {
  background-color: #f1f1f1;
}

/* === HEADER END === */

/* === TABLE === */

/* === WAKATEE LISTING CONTAINER === */

.wakatee_listings_container {
  width: 100%;
  margin: 1rem auto;
  max-height: 55vh;
  overflow: auto;
  border-radius: 1rem 1rem 0 0;
}

.wakatee_empty_text_container {
  width: 100%;
}

.wakatee_listings_empty_text {
  text-align: center;
}

.wakatee_listings_container::-webkit-scrollbar {
  width: 5px; /* Width of the scrollbar */
}

.wakatee_listings_container::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Color of the track */
}

.wakatee_listings_container::-webkit-scrollbar-thumb {
  background-color: #2b4b1b; /* Color of the thumb */
  border-radius: 3px; /* Rounded corners of the thumb */
}

.wakatee_listings_container::-webkit-scrollbar-thumb:hover {
  background-color: #2b4b1b; /* Color of the thumb on hover */
}

.wakatee_listings_card_container {
  margin: 0 2rem 2rem 0;
  height: 28rem;
  display: flex;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.wakatee_listings_img_container {
  width: 30%;
  height: 100%;
  border-radius: 0.8rem 0 0 0.8rem;
}

.wakatee_listings_img_container img {
  height: 100% !important;
  object-fit: cover;
  border-radius: 0.8rem 0 0 0.8rem;
}

.wakatee_listings_content_container {
  width: 70%;
  height: 100%;
  padding: 2.4rem 1rem;
  background-color: #ffffff;
  border-radius: 0 0.8rem 0.8rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wakatee_listings_content_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wakatee_listings_content_amount {
  margin: 0.8rem 0;
}

.wakatee_listings_content_text0 {
  font-size: 1.25rem;
  color: #667085;
}
.wakatee_listings_content_text1 {
  font-size: 1.4rem;
  color: #667085;
}
.wakatee_listings_content_text2 {
  font-size: 1.5rem;
}

.wakatee_listings_content_action_wrapper span i {
  margin: 0 0.5rem;
  font-size: 1.8rem;
  color: #667085;
  cursor: pointer;
  transition: all 300ms ease;
}

.wakatee_listings_content_action_wrapper span i:hover {
  font-size: 2rem;
  color: #2b4b1b;
}

/* === WAKATEE LISTING CONTAINER end === */

.table_main_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listings_table_body_wrapper {
  width: 100%;
  max-height: 60vh;
  overflow: auto;
  border-radius: 1rem 1rem 0 0;
}

.listings_title_container {
  display: flex;
  height: 4rem;
}

.listings_img_title {
  width: 4rem;
  height: 4rem;
  border: 0.5px solid #667085;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
}

.listings_img_title img {
  width: 99%;
  height: 99%;
  border-radius: 0.8rem;
  object-fit: cover;
}

.listings_title_text {
  margin-left: 0.3rem;
  height: 100%;
}

.listings_title_text p:first-child {
  color: #333843;
  font-weight: 600;
  font-size: 1.2rem;
}

.listings_total_space {
  color: #667085;
  font-size: 1.1rem;
}

.listings_row_text {
  font-size: 1.1rem;
}

.listings_row_text span i {
}

.listings_row_text_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  background-color: #2b4b1b;
  color: #ffffff;
  border-radius: 1rem;
  transition: all 200ms ease-in;
}

.listings_row_text_btn:hover {
  background-color: #4d8531;
}

.empty_row_text {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 auto;
}

.listings_status_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_status {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  padding: 0.3rem 0.5rem;
  border-radius: 1rem;
}

.list_live_status {
  background-color: #e7f4ee;
  color: #0d894f;
}
.list_draft_status {
  background-color: #f0f1f3;
  color: #667085;
}
.list_outOfSpace_status {
  background-color: #feedec;
  color: #f04438;
}
.list_hidden_status {
  background-color: #fdf1e8;
  color: #e46a11;
}

.listings_action_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listings_action_wrapper span i {
  font-size: 1rem;
  color: #667085;
  cursor: pointer;
  transition: all 300ms ease;
}

.listings_action_wrapper span i:hover {
  font-size: 1.2rem;
  color: #2b4b1b;
}

/* === TABLE END === */

/* === PAGINATION === */

.listings_table_footer_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listings_table_footer_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 0 0 1rem 1rem;
  padding: 1rem;
}

.listings_table_footer_left p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #667085;
}

.listings_table_footer_right {
  display: flex;
  align-items: center;
}

.listings_table_footer_right button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.3rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 1rem;
  outline: none;
  font-size: 1.3rem;
  color: #0a0b0d;
  font-weight: 500;
  background-color: #f0f1f3;
}

.listings_table_footer_right button:hover {
  border: none;
  outline: none;
  color: #0a0b0d;
  background-color: #f0f1f3;
}

.listings_table_activeBtn {
  color: #ffffff !important;
  background-color: #2b4b1b !important;
  transition: background-color 300ms ease;
}

.listings_table_activeBtn:hover {
  background-color: #2b4b1b !important;
  color: #ffffff;
}

/* === PAGINATION END === */

/* Mobile */
@media (max-width: 700px) {
  /* === HEADER === */

  .listings_header_container {
    height: 30vh;
  }

  .listings_top_header_container {
    height: 30%;
  }

  .listings_top_header_container_left {
    width: 55%;
  }

  .listings_top_header_container_left > h3 {
    font-size: 2rem;
  }

  .listings_top_header_container_right {
    width: 45%;
  }

  .listings_bottom_header_container {
    height: 60%;
    width: 100%;
    flex-direction: column;
    justify-content: space-around;
  }

  .listings_bottom_left_header_container {
    width: 100%;
    justify-content: center;
  }

  .listings_search_wrapper {
    width: 100%;
  }

  .listings_date_filter_wrapper {
    width: 50%;
  }

  .listings_date_filter_wrapper {
    margin-right: 0;
  }

  .listings_search_wrapper > i {
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 500;
    color: #667085;
    cursor: pointer;
  }

  .listings_search_wrapper > input {
    width: 90%;
    font-size: 1.5rem !important;
    font-weight: 500;
    color: #667085;
    border: none !important;
    outline: none !important;
    background-color: transparent !important;
  }

  .listings_bottom_right_header_container {
    width: 100%;
    justify-content: space-between;
  }

  .listings_date_filter_wrapper input {
    font-size: 1.5rem;
    color: #667085 !important;
    border: none !important;
    outline: none !important;
    background-color: transparent !important;
  }

  .listings_columns_filter_wrapper {
    width: 40%;
  }

  /* === HEADER END === */

  /* === TABLE === */
  .listings_table_body_wrapper {
    max-height: 50vh;
  }

  /* === WAKATEE LISTING CONTAINER === */

  .wakatee_listings_container {
    max-height: 50vh;
  }

  .wakatee_listings_card_container {
    min-height: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .wakatee_listings_img_container {
    width: 100%;
    height: 40%;
    border-radius: 0.8rem 0.8rem 0 0;
  }

  .wakatee_listings_img_container img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    border-radius: 0.8rem 0.8rem 0 0;
  }

  .wakatee_listings_content_container {
    width: 100%;
    height: 60%;
    padding: 1.8rem 1rem;
    background-color: #ffffff;
    border-radius: 0 0 0.8rem 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .wakatee_listings_content_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .wakatee_listings_content_amount {
    margin: 0.8rem 0;
  }

  .wakatee_listings_content_text0 {
    font-size: 1.25rem;
    color: #667085;
  }
  .wakatee_listings_content_text1 {
    font-size: 1.35rem;
    color: #667085;
  }
  .wakatee_listings_content_text2 {
    font-size: 1.45rem;
  }

  .wakatee_listings_content_action_wrapper span i {
    margin: 0 0.3rem;
    font-size: 1.6rem;
  }

  .wakatee_listings_content_action_wrapper span i:hover {
    font-size: 1.7rem;
    color: #2b4b1b;
  }

  /* === WAKATEE LISTING CONTAINER end === */

  /* === TABLE END === */

  /* === PAGINATION === */

  .listings_table_footer_container {
    flex-direction: column-reverse;
  }

  /* === PAGINATION END === */
}

/* Tablet and Smaller Desktop */
/* @media (min-width: 701px) and (max-width: 1120px) {
} */
