/* ===== Review Table Component ===== */

.review-table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.review-table th,
.review-table td {
  padding: 8px;
  text-align: left;
  border: 1px solid #0e0d0d;
}

.review-table th {
  background-color: #d7e9ca;
}

/* ===== Highlight Row ===== */
.review-table__highlight {
  background: linear-gradient(90deg, #eef6ff 0%, #f8fbff 100%);
  font-weight: 600;
  position: relative;
  transform: scale(1.02);
  box-shadow:
    0 8px 24px rgba(59, 130, 246, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.06);
  border-left: 6px solid #3b82f6;
  z-index: 1;
}

.review-table__highlight td {
  border-top: 1px solid rgba(59, 130, 246, 0.35);
  border-bottom: 1px solid rgba(59, 130, 246, 0.35);
}

@media (hover: hover) {
  .review-table__highlight:hover {
    transform: scale(1.035) translateY(-2px);
    box-shadow:
      0 14px 36px rgba(59, 130, 246, 0.28),
      0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .review-table {
    font-size: 14px;
  }

  .review-table th,
  .review-table td {
    padding: 6px;
  }

  .review-table__highlight {
    transform: none;
  }
}