/* RESULTS AREA */
.results {
  flex: 1;
  padding: 2rem;
  background-color: #f9fafb;
}

/* TOOLBAR */
.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.results-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111618;
}

.results-count {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* SORT */
.results-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  white-space: nowrap;
}

.sort-select-wrapper {
  position: relative;
  min-width: 160px;
}

.sort-select {
  width: 100%;
  appearance: none;
  padding: 0.6rem 2rem 0.6rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  color: #111618;
  cursor: pointer;
}

.sort-select:focus {
  outline: none;
  border-color: var(--primary);
}

.sort-icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #6b7280;
  font-size: 1.2rem;
}
