/* ============================================
   GPA Calculator — Page Specific Overrides Only
   (All global styling comes from main.css)
============================================= */

/* Ensure results appear in two columns on desktop */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Slightly increase GPA font size */
#gpaValue {
  font-size: 28px;
  font-weight: 700;
}

/* Course table scroll safety */
.course-table-wrapper {
  overflow-x: auto;
  margin-top: 12px;
}

/* Remove button style (local small tweak) */
.remove-row-btn {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
}

/* Formula box highlight */
.formula-box {
  background: #f8fafc;
  border-left: 4px solid #0ea5a4;
  padding: 14px;
  border-radius: 6px;
  margin-top: 10px;
}

/* FAQ answer reveal — keep simple */
.faq-answer {
  display: none;
  padding: 10px;
  margin-top: 6px;
  background: #f8fafc;
  border-left: 3px solid #0ea5a4;
  border-radius: 4px;
}

/* Mobile optimization */
@media (max-width: 900px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}
