.page-header {
  margin-bottom: 2rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--forest-green);
  text-shadow: 0 0 30px rgba(15, 163, 90, 0.5);
}

.filters {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(15, 163, 90, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.filter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-select,
.filter-input {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(15, 163, 90, 0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

.filter-select:focus,
.filter-input:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 20px rgba(15, 163, 90, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.filter-select option {
  background: var(--darker-bg);
  color: var(--white);
}

.filter-btn {
  padding: 0.75rem 2rem;
  background: var(--forest-green);
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  background: #0d8a4d;
  box-shadow: 0 0 30px rgba(15, 163, 90, 0.6);
  transform: translateY(-2px);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.pagination-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(15, 163, 90, 0.2);
  border: 1px solid var(--forest-green);
  border-radius: 8px;
  color: var(--forest-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background: var(--forest-green);
  color: var(--white);
  box-shadow: 0 0 30px rgba(15, 163, 90, 0.6);
  transform: translateY(-2px);
}

.pagination-info {
  color: var(--grey);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .filter-form {
    flex-direction: column;
  }

  .filter-select,
  .filter-input {
    width: 100%;
  }

  .pagination {
    flex-direction: column;
    gap: 1rem;
  }
}