/* assets/css/pages/results.css */
.result-stat-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  height: 100%;
}
.result-stat-card h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.result-subject-list {
  display: grid;
  gap: 0.75rem;
}
.result-subject-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-light-bg);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}
.result-subject-list strong {
  color: var(--color-primary);
  font-size: 1.05rem;
}
.result-table-shell {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem;
}
.result-table {
  margin: 0;
}
.result-table thead th {
  background: var(--color-light-bg);
  border-bottom: 0;
  font-weight: 600;
  white-space: nowrap;
}
.result-table td,
.result-table th {
  padding: 0.95rem 1rem;
  vertical-align: middle;
}
.result-student {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
}
.result-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}
.result-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(33, 37, 41, 0.08);
}
.result-avatar-badge {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  border: 2px solid var(--color-white);
}
.result-highlight-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  height: 100%;
}
.result-highlight-card__student {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.result-highlight-card__score {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.65rem;
  color: var(--color-primary);
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .result-table td,
  .result-table th {
    padding: 0.75rem;
  }
}
