@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Sinhala:wght@400;600;700&display=swap');

body {
  background-color: #ffb6c1;  /* darker pink background */
  font-family: 'Noto Sans Sinhala', sans-serif;
  color: #1a1a1a;
  margin: 0;
}

.content-box {
  background-color: #ffe6f0;  /* light pink for center boxes */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 30px;
  margin: 20px auto;
  max-width: 850px;
}

.title {
  font-size: 46px;
  font-weight: 700;
  text-align: center;
  color: #b30059; /* darker rose for contrast */
  margin-top: 30px;
  margin-bottom: 15px;
}

.start-btn {
  background-color: #b30059; /* deep pink button */
  color: white !important;
  padding: 14px 35px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.start-btn:hover {
  background-color: #cc0066;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.well {
  background-color: #ffffff;
  border-left: 5px solid #cc0066;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 20px;
}

.question-title {
  font-size: 20px;
  font-weight: 600;
  color: #800040;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table th, table td {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

table th {
  background-color: #b30059;
  color: white;
}

.row-between {
  display:flex;
  justify-content:space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.row-between > * { flex: 1 1 auto; }

.center { text-align:center; }
.hidden { display:none; }

/* Print: hide nav buttons and title bar */
@media print{
  .no-print { display:none !important; }
  body { background: white; }
  .content-box { box-shadow:none; margin:0; max-width: 100%; }
}