.filter-bar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(32, 87, 129, 0.08);
  padding: 24px;
  margin-bottom: 30px;
  border: 1px solid rgba(32, 87, 129, 0.06);
}

.search-section {
  margin-bottom: 20px;
}

.modern-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.modern-search-form input {
  width: 100%;
  padding: 14px 45px 14px 18px;
  border: 1px solid rgba(32, 87, 129, 0.15);
  border-radius: 8px;
  font-size: 16px;
  color: #205781;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-search-form input:focus {
  border-color: #205781;
  box-shadow: 0 0 0 3px rgba(32, 87, 129, 0.08);
  outline: none;
}

.modern-search-form button {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: rgba(32, 87, 129, 0.6);
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-search-form button:hover {
  color: #205781;
  transform: scale(1.05);
}

.filter-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: #205781;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modern-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 8px 16px;
  background: rgba(32, 87, 129, 0.04);
  border: 1px solid rgba(32, 87, 129, 0.08);
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-checkbox:hover {
  background: rgba(32, 87, 129, 0.08);
  border-color: rgba(32, 87, 129, 0.12);
}

.modern-checkbox input {
  display: none;
}

.modern-checkbox span {
  font-size: 14px;
  color: #205781;
  font-weight: 400;
}

.modern-checkbox input:checked + span {
  color: #205781;
  font-weight: 500;
}

.modern-checkbox input:checked + span::before {
  content: '✓';
  margin-right: 6px;
  color: #205781;
}

.modern-checkbox.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(32, 87, 129, 0.02);
  border-color: rgba(32, 87, 129, 0.04);
}

.modern-checkbox.disabled:hover {
  background: rgba(32, 87, 129, 0.02);
  border-color: rgba(32, 87, 129, 0.04);
}

@media (max-width: 768px) {
  .filter-section {
    flex-direction: column;
  }
  
  .filter-group {
    width: 100%;
  }
}