/* Start custom CSS *//* 1. Make link colors high-contrast and obvious */
a {
  color: #5a0a8a;            /* your brand purple */
  text-decoration: underline;
}
a:hover,
a:focus {
  color: #7d3ebc;
  outline: 2px dashed #7d3ebc; /* clear focus state */
}

/* 2. Ensure headings have enough spacing */
.elementor-widget-heading h1,
.elementor-widget-heading h2 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* 3. Style your breakout-sessions table for readability */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
th,
td {
  padding: .75rem;
  border: 1px solid #ddd;
}
th {
  background-color: #f7f7f7;
  text-align: left;
}

/* 4. Responsive handling for the iframe */
.your-form-iframe-class {
  width: 100%;
  min-height: 600px; /* adjust as needed */
}

/* 5. Font-size rules for legibility */
body {
  font-size: 1rem;          /* base 16px */
  line-height: 1.6;
}
@media (min-width: 768px) {
  body {
    font-size: 1.0625rem;   /* 17px on tablet+ */
  }
}/* End custom CSS */