/* Page Header Component */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
}

.page-title {
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

/* Actions */
.actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}

.action-link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Back Link */
.back-link {
  display: inline-block;
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
}

.back-link:hover {
  color: #495057;
}

/* Search and Filters Section */
.search-filters {
  margin-bottom: 30px;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.search-input {
  flex: 1;
  min-width: 300px;
}

.filter-select {
  min-width: 200px;
}

.matching-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 12px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 6px;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.matching-filter .form-check-input {
  margin: 0;
}

.matching-filter .form-check-label {
  font-size: 14px;
  color: #495057;
  font-weight: 500;
}