/* #stateFilter li.active, #cityId li.active, #StoreStatus li.active { */
/* background-color: #0073aa; */
/* color: white; */
/* border-color: #0073aa; */
/* } */

.Stores-section li.active {
  background-color: #ee0000;
  color: white;
  border-color: #ee0000;
  padding: 6px;
}

.Stores-section .search-bx i {
  cursor: pointer;
}

#stateFilter li {
  position: relative;
  padding-right: 25px;
}

#stateFilter .clear-filter {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #ee0000;
  border: 1px solid #ee0000;
  border-radius: 3px;
  cursor: pointer;
  font-size: 25px;
  padding: 0 4px;
  line-height: 1;
  color: #fff;
}


#cityId li {
  position: relative;
  padding-right: 25px;
}

#cityId .clear-filter {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #ee0000;
  border: 1px solid #ee0000;
  border-radius: 3px;
  cursor: pointer;
  font-size: 25px;
  padding: 0 4px;
  line-height: 1;
  color: #fff;
}


ul.custom-pagination {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-left: 0;
  margin-top: 20px;
}

ul.custom-pagination li {
  font-size: 16px;
}

ul.custom-pagination li a {
  display: inline-block;
  padding: 8px 14px;
  color: #000;
  text-decoration: none;
  border-radius: 50%;
  font-weight: bold;
  transition: background-color 0.3s;
}

ul.custom-pagination li.active-page span {
  display: inline-block;
  background: #fff;
  color: #d00000;
  padding: 8px 14px;
  border-radius: 50%;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul.custom-pagination li a:hover {
  background-color: #f0f0f0;
}

.Stores-section .search-bx span {
  cursor: pointer;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #555;
  font-family: sans-serif;
  font-size: 14px;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border-left-color: #007bff;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
