html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.spaced-div {
  margin-bottom: 40px; 
}

input[type="text"] {
  width: 50%
}

th {
  font-size: 0.9em;
  font-weight: bold;
  color: #333;
}

.square {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid #000; /* Optional */
}

.min-width-col {
  width: 20%; /* Default width */
  min-width: 175px; /* Minimum width in pixels */
}

table {
  width: 100%;
  border-collapse: collapse;
}

.centered {
  text-align: center;
  vertical-align: middle;
  color: #a0a0a0;
}

.responsiveTable {
  width: 100%;
  border-collapse: collapse;
}

.responsiveTable td,
.responsiveTable th {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 16px;
  min-height: 50px; /* Ensure TD height doesn't go below 50px */
}

.responsiveTable th {
  background-color: #92c9e6;
  color: #ffffff;
}

.responsiveTable tbody tr:nth-child(even) {
  background-color: #d1e8f5;
}

@media (max-width: 1000px) {
  .responsiveTable thead {
      display: none;
  }

  .responsiveTable,
  .responsiveTable tbody,
  .responsiveTable tr,
  .responsiveTable td {
      display: block;
      width: 100%;
  }

  .responsiveTable tr {
      margin-bottom: 15px;
  }

  .responsiveTable a {
    display: block; /* Make the link take up the full width of the cell */
    color: inherit; /* Optional: keeps the link color consistent */
  }

  .responsiveTable td {
      padding: 12px 15px;
      text-align: left;
      position: relative;
  }

  /* Updated ::before behavior for headers */
  .responsiveTable td::before {
      content: attr(data-label);
      position: relative;
      display: block; /* Make the label occupy its own line */
      margin-bottom: 5px; /* Add space between the header and content */
      font-size: 15px;
      font-weight: bold;
      text-align: left; /* Align headers to the right */
  }


}


