/* Apply the font globally */
body {
  font-family: 'Figtree', sans-serif;
}
/* ==========================================================
   GDPR Rights Table styling
   ========================================================== */
.gdpr-table { border-collapse: collapse; }

.gdpr-table th,
.gdpr-table td {
  border: 1px solid #0d121d;   /* Tailwind gray-200 */
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.gdpr-table th {
  background: #845cbb;         /* Authentz purple */
  color: #ffffff;
  font-weight: 600;
}

.gdpr-table tr:nth-child(even) {
  background: #f9fafb;         /* Tailwind gray-50 */
}
/* Small screens (up to 767.98px) */
@media (max-width: 767.98px) {
  .gdpr-table th,
  .gdpr-table td {
    padding: 0px;
  }
}