.review-card {
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.review-card:hover {
  transform: scale(1.02);
}

.review-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-card p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0.25rem 0;
}

.review-btn {
  background-color: #972141;
  color: white;
  padding: 0.5rem 1.2rem;
  display: inline-block;
  margin-top: 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.review-btn:hover {
  background-color: #fcc10f;
}

.deadline-close {
  border: 2px solid #f87171;
  background-color: rgba(248, 113, 113, 0.1);
}

.deadline-medium {
  border: 2px solid #fbbf24;
  background-color: rgba(251, 191, 36, 0.1);
}

.deadline-safe {
  border: 2px solid #34d399;
  background-color: rgba(52, 211, 153, 0.1);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.badge.red {
  background-color: #fecaca;
  color: #b91c1c;
}

.badge.orange {
  background-color: #fde68a;
  color: #92400e;
}

.badge.green {
  background-color: #bbf7d0;
  color: #065f46;
}
.section-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.review-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.review-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1rem 1.25rem;
  width: 100%;
  max-width: 340px;
}

.badge.today { background: #ef4444; color: white; border-radius: 8px; padding: 0 8px; }
.badge.soon { background: #f59e0b; color: white; border-radius: 8px; padding: 0 8px; }
.badge.later { background: #10b981; color: white; border-radius: 8px; padding: 0 8px; }

.mark-reviewed {
  background-color: #3b82f6;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  border: none;
  margin-top: 0.5rem;
  cursor: pointer;
}

/*review card buttons layout*/
.review-card .btn-preview {
  background-color: #e9d5ff;
  color: #6b21a8;
}


/*review status buttons*/
.status-tracker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.status-step .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ccc;
}
.status-step .label {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  color: #555;
}
.connector {
  flex: 1;
  height: 2px;
  background: #ccc;
  margin-bottom: 0.5rem;
}

/*review single page top information*/
.question-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* centers the items horizontally */
  align-items: center;       /* centers vertically if needed */
  gap: 2rem;
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.question-meta-row div {
  min-width: 150px;
  font-weight: 500;
 
}
