.user-profiles-list-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
}

.user-profiles-list-page__search {
  position: relative;
  flex: 1 1 100%;
  min-width: 0;
}

.user-profiles-list-page__search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.user-profiles-list-page__search .adminjs_Input {
  min-height: 42px;
  padding-left: 44px;
  border-radius: 14px;
}

.user-profiles-list-page__filter {
  width: 100%;
}

.user-profiles-list-page__filter .adminjs_Select__control {
  min-height: 42px;
  border-radius: 14px;
}

.user-profiles-list-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.user-profiles-list-page__panel {
  border: 1px solid var(--admin-page-section-border);
  border-radius: var(--admin-page-section-radius);
  background: #ffffff;
  overflow: hidden;
}

.user-profiles-list-page__table {
  width: 100%;
  border-collapse: collapse;
}

.user-profiles-list-page__table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--admin-page-table-divider);
  color: var(--admin-page-table-body-color);
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
}

.user-profiles-list-page__table tbody tr:last-child td {
  border-bottom: 0;
}

.user-profiles-list-page__gender-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.user-profiles-list-page__gender-badge--male {
  color: #2563eb;
  background: #dbeafe;
}

.user-profiles-list-page__gender-badge--female {
  color: #db2777;
  background: #fce7f3;
}

.user-profiles-list-page__gender-badge--other {
  color: #7c3aed;
  background: #ede9fe;
}

.user-profiles-list-page__view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #475569;
  cursor: pointer;
}

.user-profiles-list-page__view-button:hover {
  background: #f8fafc;
}

.user-profiles-list-page__empty-state {
  padding: 48px 24px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

.user-profiles-list-page__footer {
}

.user-profiles-list-page__summary {
  color: #64748b;
  font-size: 14px;
}

@media (min-width: 960px) {
  .user-profiles-list-page__toolbar {
    flex-wrap: nowrap;
  }

  .user-profiles-list-page__search {
    flex: 1 1 auto;
  }

  .user-profiles-list-page__filter {
    flex: 0 0 120px;
    width: 120px;
  }
}

@media (max-width: 1023px) {
  .user-profiles-list-page__stats-grid {
    grid-template-columns: 1fr;
  }

  .user-profiles-list-page__panel {
    overflow-x: auto;
  }
}

@media (max-width: 767px) {
  .user-profiles-list-page__table tbody td {
    padding: 14px 16px;
  }
}
