.room-seeker-list-page .ch-content {
  min-height: calc(100vh - 260px);
  background: linear-gradient(180deg, #40a9b8 0%, #a8e5da 100%);
  padding: 1px 0 42px;
}

.pwa-room-seeker-list {
  max-width: 1120px;
  color: #3d4e58;
}

.pwa-seeker-list-intro {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.pwa-seeker-list-intro h1,
.pwa-seeker-list-cta h2 {
  margin: 0 0 8px;
  color: #075161;
  font-family: "Patua One", Georgia, serif;
  font-weight: 400;
  line-height: 1.16;
}

.pwa-seeker-list-intro h1 {
  font-size: 36px;
}

.pwa-seeker-list-lede {
  margin: 0;
  color: #557782;
  font-size: 18px;
  line-height: 1.45;
}

.pwa-seeker-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pwa-seeker-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(7, 81, 97, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 81, 97, 0.09);
  padding: 16px;
}

.pwa-seeker-card-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.pwa-seeker-card-main:hover,
.pwa-seeker-card-main:focus {
  color: inherit;
  text-decoration: none;
}

.pwa-seeker-avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #c8dde0;
  color: #075161;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.pwa-seeker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pwa-seeker-card-body {
  flex: 1;
  min-width: 0;
  display: block;
}

.pwa-seeker-name {
  display: block;
  margin: 1px 0 5px;
  color: #3d4e58;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.pwa-seeker-meta {
  display: block;
  color: #557782;
  font-size: 14.5px;
  line-height: 1.38;
  margin-top: 2px;
}

.pwa-seeker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pwa-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #dbe9eb;
  color: #075161;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
}

.pwa-seeker-chev {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: 24px;
  border-top: 3px solid #91b8bf;
  border-right: 3px solid #91b8bf;
  transform: rotate(45deg);
}

.pwa-seeker-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #dbe9eb;
}

.pwa-seeker-action,
.pwa-seeker-invite summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.pwa-seeker-action--profile,
.pwa-seeker-invite summary {
  border: 2px solid #349fb7;
  background: #fff;
  color: #075161;
}

.pwa-seeker-invite {
  position: relative;
}

.pwa-seeker-invite summary {
  list-style: none;
}

.pwa-seeker-invite summary::-webkit-details-marker {
  display: none;
}

.pwa-seeker-invite-options {
  position: absolute;
  z-index: 5;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(7, 81, 97, 0.2);
}

.pwa-seeker-invite-options form {
  margin: 0 0 6px;
}

.pwa-seeker-invite-options form:last-child {
  margin-bottom: 0;
}

.pwa-seeker-action--invite {
  width: 100%;
  border: 0;
  background: #00d7ad;
  color: #fff;
}

.pwa-seeker-action--invite[disabled] {
  background: #dbe9eb;
  color: #557782;
  cursor: default;
}

.pwa-seeker-list-note {
  margin: 24px 0 0;
  color: rgba(61, 78, 88, 0.72);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.pwa-seeker-empty {
  grid-column: 1 / -1;
  padding: 26px 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 81, 97, 0.09);
  text-align: center;
}

.pwa-seeker-empty h2 {
  margin: 0 0 8px;
  color: #075161;
  font-family: "Patua One", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.18;
}

.pwa-seeker-empty p {
  max-width: 460px;
  margin: 0 auto;
  color: #557782;
  font-size: 15px;
  line-height: 1.45;
}

.pwa-seeker-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 81, 97, 0.09);
}

.pwa-page-link,
.pwa-page-number {
  color: #075161;
  font-weight: 800;
  text-decoration: none;
}

.pwa-page-link.is-disabled {
  color: #91b8bf;
  pointer-events: none;
}

.pwa-page-list {
  display: flex;
  gap: 4px;
}

.pwa-page-number {
  min-width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
}

.pwa-page-number.selected {
  background: #075161;
  color: #fff;
}

.pwa-seeker-list-cta {
  max-width: 680px;
  margin: 30px auto 18px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(7, 81, 97, 0.12);
  text-align: center;
}

.pwa-seeker-list-cta h2 {
  font-size: 28px;
}

.pwa-seeker-list-cta p {
  max-width: 500px;
  margin: 0 auto 18px;
  color: #557782;
  font-size: 16px;
  line-height: 1.45;
}

.pwa-seeker-list-cta-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #00d7ad;
  box-shadow: 0 8px 22px rgba(7, 81, 97, 0.18);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  padding: 0 26px;
  text-decoration: none;
}

.pwa-seeker-list-cta-button:hover,
.pwa-seeker-list-cta-button:focus {
  color: #fff;
  text-decoration: none;
}
