.input_search {
  padding: 10px 15px;
  border: 1px solid #333;
  border-radius: 0;
  margin: 0 10px;
  width: 300px;
  height: 32px;
  font-size: 16px;
}

.button_search {
  height: 32px;
  padding: 5px 15px;
  color: #fff;
  background-color: #555;
  border-color: #555;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

ul {
  list-style: none;
  padding: 0;
}

ul.pagination li {
  display: inline-block;
  width: 4%;
  height: 45px;
  border: 1px solid #e2e2e2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

@media screen and (max-width:767px) {
  ul.pagination li {
    display: inline-block;
    width: 15%;
    height: 40px;
    border: 1px solid #e2e2e2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
  }
}

ul.pagination li:first-child{
  border-radius: 5px 0 0 5px;
}

ul.pagination li:last-child{
  border-radius: 0 5px 5px 0;
}

ul.pagination li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

ul.pagination li:hover a,
ul.pagination li.active a {
  color: white;
}

ul.pagination li:hover,
ul.pagination li.active {
  font-weight: bold;
  background-color: #0074ca;
  border-color: #0074ca;
}

.product_p {
  font-size: 14px;
  text-align: center;
  color: white;
  padding: 2px;
  border-radius: 5px;
  background: #0c9e8b;
  width: fit-content;
  margin-bottom: 5px;
}

.product_category_empty {
  font-size: 14px;
  padding: 2px;
  width: fit-content;
  margin-bottom: 5px;
}

.product_upload {
  width: 150px;
  height: 40px; 
  font-size: 16px;
  border: 1px solid #333;
  background: white;
}

.product_sync_wrap {
  background: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #555555 !important;
  margin-right: 0 !important;
  min-height: 0;
}

.product_wrap {
  background: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #555555 !important;
  margin-right: 0 !important;
  min-height: 0;
}

.product_header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 27px !important;
  margin-bottom: 5px !important;
}

.product_img {
  bottom: 5px !important;
  width: 100% !important;
  height: 171px !important;
  border-radius: 0px !important;
  object-fit: contain !important;
}

.product_empty {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px;
  font-size: 16px;
}

.product_edit_btn {
  display: inline-block;
  width: 52px;
  padding: 5px 10px;
  font-size: 16px;
  border: 1px solid #333;
  color: #fff;
  background-color: #333;
  transition: 0.5s;
  margin-top: 10px;
}

.product_edit_btn:hover {
  background-color: #0074ca;
  color: #fff;
  border-color: #0074ca
}

.product_edit_btn:hover {
  background-color: #0074ca;
  color: #fff;
  border-color: #0074ca;
}

.product_edit_content {
  display: flex;
  margin-left: 50px;
  flex-direction: column;
  gap: 10px;
}

.product_mobile_edit_btn {
  font-size: 14px;
  text-align: center;
  color: white;
  padding: 2px;
  border-radius: 5px;
  background: #0074ca;
  width: fit-content;
  border: none;
}

.edit_table_td {
  width: 33% !important;
}

.brand_checkbox {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 0;
  margin: 0 10px;
  /* width: calc(100% - 20px); */
}

