/* 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: 8px;
  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;
  margin-bottom: 20px;
  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;
}