/* ===========================
   Custom CSS
   =========================== */

/* === Ordered Lists === */
ol {
  list-style-type: lower-alpha;
}

.para-indent {
  text-indent: 30px;
}

roman.ol {
  list-style-type: lower-roman;
}

/* === Image and Layout Styling === */

/* Default layout for larger screens */
.photo-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* Mobile layout */
@media (max-width: 600px) {
  .photo-container {
    display: block;
    overflow: hidden;
  }

  .photo-container img {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
    width: 100%;
    height: auto;
  }

  img.alignleft {
    width: 100%;
    height: auto;
  }
}

/* === Two Column Layout === */
.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.two-columns ul {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.two-columns li {
  margin-bottom: 6px;
}

/* === Responsive Table === */
.responsive-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Prevents table from shrinking too much */
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.responsive-table th {
  background-color: #f2f2f2;
}

.advisory {margin-top: 15px;}











