/* Стили для пагинации */
.pagination {
    margin: 20px 0;
    text-align: center;
}

.pagination-info {
    margin-bottom: 10px;
    color: #666;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.pagination-btn, .load-more-btn {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

.pagination-btn:hover, .load-more-btn:hover {
    background: #e0e0e0;
}

.current-page {
    padding: 5px 10px;
    background: #007bff;
    color: white;
    border-radius: 3px;
}

.load-more-btn {
    margin-top: 10px;
    padding: 8px 20px;
    background: #28a745;
    color: white;
    border: none;
}

.loader {
    padding: 10px;
    color: #666;
}
.load-more-container {
    margin: 20px 0;
    text-align: center;
}

.load-more-btn {
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.load-more-btn:hover {
    background: #45a049;
}
.pagination-btn, .current-page {
    margin: 0 3px;
    padding: 3px 8px;
}

.current-page {
    font-weight: bold;
    background: #007bff;
    color: white;
    border-radius: 3px;
}

.pagination-btn:hover {
    background: #e0e0e0;
}
.loader {
    padding: 10px;
    text-align: center;
    font-style: italic;
    color: #666;
}
.pagination-info{
	display:none;
}


.search-filter {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-title {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  font-size: 16px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 250px;
}

.filter-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: white;
  border: 1px solid #e2e8f0;
}

.filter-option:hover {
  border-color: #0a966c;
  box-shadow: 0 0 0 3px rgba(10, 150, 108, 0.1);
}

.filter-option input[type="checkbox"] {
  display: none;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e0;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.filter-option input[type="checkbox"]:checked + .custom-checkbox {
  background-color: #0a966c;
  border-color: #0a966c;
}

.filter-option input[type="checkbox"]:checked + .custom-checkbox::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.option-text {
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
}

.filter-option input[type="checkbox"]:checked ~ .option-text {
  color: #0a966c;
  font-weight: 600;
}

/* Адаптивность */
@media (max-width: 768px) {
  .filter-options {
    flex-direction: column;
    gap: 10px;
  }
  
  .filter-option {
    width: 100%;
  }
}
/* Добавьте этот стиль к предыдущему */
.custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e0;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.filter-option input[type="radio"]{
	display:none;
}
.filter-option input[type="radio"]:checked + .custom-radio {
  border-color: #0a966c;
}

.filter-option input[type="radio"]:checked + .custom-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #0a966c;
  border-radius: 50%;
}

.filter-option input[type="text"]{
margin-right:5px;width:170px;display: inline;
}
.inputsandbtn{
	width: 255px;
    /*background-color: #0cbc87;*/
}