table.responsive-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid black;
}

table.responsive-table th,
table.responsive-table td {
  border: 1px solid black;
  padding: 8px;
  font-size: 18px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  table.responsive-table thead {
    display: none;
  }

  table.responsive-table,
  table.responsive-table tbody,
  table.responsive-table tr,
  table.responsive-table td {
    display: block;
    width: 100%;
  }

  table.responsive-table tr {
    border: 1px solid black;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
  }

  table.responsive-table td {
    text-align: left;
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px solid #ccc;
  }

  table.responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 8px;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
  }
}

#sp-main-body {
    padding-top: 5px !important;  /* reduce padding */
    margin-top: 0 !important;     /* remove margin */
    padding-bottom: 5px;           /* optional, reduce bottom padding */
}


/* Make full page height flex container */
#sp-body-inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full viewport height */
}

/* Content area grows to fill available space */
#sp-main-body {
  flex-grow: 1;
  /* Avoid margin collapse */
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Footer stays at bottom */
#sp-footer {
  /* position relative or static */
  position: relative !important;
  z-index: 10;
  margin-top: auto; /* push footer to bottom */
}


#sp-topmenu a,
#sp-main-menu a,
.sp-megamenu-parent > a {
    font-weight: bold !important;
}
