

/* ================= REATTEMPT PAGE ================= */

.reattempt-page .container {
  max-width: 900px;
}

.reattempt-page .card {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reattempt-page .card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reattempt-page .backBtn {
  background: var(--gray-700);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  margin-bottom: 20px;
}

/* ===== Typography for Reattempt ===== */

.reattempt-page .card {
  font-size: 16px;
  font-weight: 600;
}

.reattempt-page .topic {
  font-size: 15px;
  font-weight: 500;
}

/* ===== Responsive ===== */

@media (max-width: 600px) {

  .reattempt-page .card {
    padding: 14px;
  }

}