.review-list-page {
  position: relative;
  gap: 18px;
  isolation: isolate;
}

.review-list-page::before,
.review-list-page::after {
  border-radius: 999px;
  content: "";
  filter: blur(12px);
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.review-list-page::before {
  background: radial-gradient(circle, rgba(148, 163, 184, 0.16), rgba(148, 163, 184, 0));
  height: 240px;
  right: 0;
  top: -36px;
  width: 240px;
}

.review-list-page::after {
  background: radial-gradient(circle, rgba(203, 213, 225, 0.18), rgba(203, 213, 225, 0));
  bottom: 64px;
  height: 220px;
  left: -48px;
  width: 220px;
}

.review-list-page__stats-grid {
  margin-bottom: 4px;
}

.review-list-page__stats-grid .stats-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  min-height: 104px;
  padding: 18px 20px;
}

.review-list-page__stats-grid .stats-card__title {
  color: #64748b;
  font-weight: 600;
  margin-bottom: 8px;
}

.review-list-page__stats-grid .stats-card__value {
  font-size: 28px;
  font-weight: 800;
}

.review-list-page__panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
  padding: 20px;
}

.review-list-page__panel .search-filter-toolbar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: none;
  margin-bottom: 18px;
  padding: 14px;
}

.review-list-page__panel .search-filter-toolbar__search .adminjs_Input,
.review-list-page__panel
  .search-filter-toolbar__select
  .adminjs_Select__control {
  border-radius: 12px;
}

.review-list-page__panel .search-filter-toolbar__search .adminjs_Input {
  background: #ffffff;
}

.review-list-page__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-list-page__item {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  padding: 20px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.review-list-page__item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.review-list-page__item--expanded {
  border-color: #cbd5e1;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.review-list-page__item-main {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.review-list-page__item-header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.review-list-page__name {
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.review-list-page__status-badge,
.review-list-page__rating-badge {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  min-height: 30px;
  padding: 0 11px;
}

.review-list-page__status-badge--pending {
  background: rgba(255, 171, 67, 0.15);
  color: #d97706;
}

.review-list-page__status-badge--approved {
  background: rgba(46, 204, 113, 0.15);
  color: #15803d;
}

.review-list-page__status-badge--rejected {
  background: rgba(248, 113, 113, 0.14);
  color: #be123c;
}

.review-list-page__rating-badge {
  background: #fef3c7;
  color: #92400e;
}

.review-list-page__meta {
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
  margin-top: 6px;
}

.review-list-page__excerpt {
  color: #334155;
  font-size: 14px;
  line-height: 1.85;
  margin-top: 10px;
}

.review-list-page__rating-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.review-list-page__stars {
  display: inline-flex;
  gap: 4px;
}

.review-list-page__star {
  color: rgba(251, 191, 36, 0.22);
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.review-list-page__star--full {
  color: #f59e0b;
}

.review-list-page__star--half {
  background: linear-gradient(90deg, #f59e0b 50%, rgba(251, 191, 36, 0.22) 50%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.review-list-page__rating-note {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.review-list-page__detail-button {
  align-items: center;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  box-shadow: none;
  color: #334155;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
}

.review-list-page__detail-button:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.review-list-page__details {
  border-top: 1px solid #e5e7eb;
  margin-top: 18px;
  padding-top: 18px;
}

.review-list-page__details-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.review-list-page__detail-field {
  background: #f8fafc;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
}

.review-list-page__detail-label {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.review-list-page__detail-value {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  word-break: break-word;
}

.review-list-page__comment-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  margin-top: 16px;
  padding: 18px;
}

.review-list-page__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.review-list-page__approve-button,
.review-list-page__reject-button {
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  min-height: 42px;
  padding: 0 20px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.review-list-page__approve-button:hover,
.review-list-page__reject-button:hover {
  transform: translateY(-1px);
}

.review-list-page__approve-button {
  background: #0f172a;
  box-shadow: none;
  color: #ffffff;
}

.review-list-page__reject-button {
  background: #fff5f7;
  border: 1px solid rgba(253, 164, 175, 0.7);
  color: #e11d48;
}

.review-list-page__approve-button:disabled,
.review-list-page__reject-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.review-list-page__footer {
  margin-top: 22px;
}

.review-list-page__summary {
  color: #64748b;
  font-size: 13px;
}

.review-list-page__empty-state {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 22px;
  color: #64748b;
  font-size: 14px;
  padding: 30px 18px;
  text-align: center;
}

@media (max-width: 960px) {
  .review-list-page__item-main {
    align-items: stretch;
    flex-direction: column;
  }

  .review-list-page__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .review-list-page__panel {
    border-radius: 24px;
    padding: 20px;
  }

  .review-list-page__item {
    border-radius: 20px;
    padding: 18px;
  }
}
