.box-filter {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: #252525d9;
}
.filter-control {
  display: flex;
  align-items: center;
  gap: 24px;
}
.filter-control > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-control > select {
  border: navajowhite;
  color: #252525d9;
}
.box-dropdown .box-dropdown-link {
  text-decoration: none;
  color: #252525d9;
}
.box-dropdown .box-dropdown-link:hover {
  text-decoration: underline;
}
.box-dropdown .box-dropdown-menu {
  background-color: rgb(239, 236, 236);
  border-radius: 6px;
  border: 1px solid rgba(37, 37, 37, 0.5);
  color: #252525bf;
  font-size: 16px;
  width: 300px;
}
.box-dropdown .box-dropdown-menu .box-above {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 0.5px solid rgba(37, 37, 37, 0.5);
}
.box-dropdown .box-dropdown-menu .box-above a {
  color: #252525bf;
  font-size: 16px;
}
.box-dropdown .box-dropdown-menu .box-beneth {
  padding: 5px 20px;
}
.box-dropdown .box-dropdown-menu .box-beneth .item {
  display: flex;
  padding: 10px 20px 10px 0;
  align-items: center;
  gap: 12px;
}
.box-dropdown .box-dropdown-menu .box-beneth input {
  width: 12px; /* Set desired width */
  height: 12px; /* Set desired height */
  transform: scale(1.5); /* Adjust scale as needed */
  transform-origin: top left; /* Keeps the checkbox aligned */
  margin-bottom: 6px;
}
.box-dropdown .box-dropdown-menu .box-beneth label {
  cursor: pointer;
}
.pagination .page-link {
  color: #252525;
  font-size: 16px;
}

@media (max-width: 576px) {
  .box-filter {
    flex-direction: column;
    gap: 24px;
  }
}
