.images-container {
  margin-top: 100px;
  display: flex;
  justify-content: center; /* Center tables horizontally */
  flex-wrap: wrap; /* Allow tables to wrap to next line on small screens */
  gap: 280px; /* Space between tables */
  border-radius: 10px;
}

.images-container img {
  width: 105px;
  height: 100px;
}


.tables-container {
  margin-top: 50px;
  display: flex;
  justify-content: center; /* Center tables horizontally */
  flex-wrap: wrap; /* Allow tables to wrap to next line on small screens */
  gap: 20px; /* Space between tables */
  border-radius: 10px;
}

.styled-table {
  /* border-collapse: collapse; */
  margin: 25px 0;
  font-size: 0.9em;
  font-family: 'Roboto Condensed', sans-serif;
  border-radius: 10px;
  border: 0 solid #E2E8F0;
  box-shadow: 0 12px 14px 8px rgba(0, 0, 0, 0.05), 0 12px 14px 10px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  color: #243c4c;
  display: inline-block;
  padding: 15px 15px;
  text-decoration: solid;
  font-weight: bold;
  transition: all 150ms ease-in-out;
  text-transform: uppercase;
  background-color: #ffffff;
}

.styled-table thead tr {
  background-color:  #217867;
  color: #ffffff;
  text-align: left;
  border-radius: 10px;
  padding: 15px 35px;
}

.styled-table th,
.styled-table td {
  border-radius: 10px;
  padding: 15px 35px;
  text-transform: capitalize;
  font-size: large;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr {
  background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}

/* .styled-table tbody tr.active-row {
  font-weight: lighter;
  color: #009879;
} */