body {
  font-family: Lato, Arial, sans-serif;
  background-color: #EAEAEA;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
}

.show-all-button {
  max-width: 200px;
  min-width: 200px;
}

.content {
  flex: 1;
  padding-top: 20px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Horizontally center child elements */
  align-items: center;
}

.page-container {
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto; /* Center horizontally */
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #F6B825;
  color: black;
  text-align: center;
  padding: 10px 0;
}

.social-links {
  margin-top: 10px; /* Space between text and social icons */
}

.social-links a {
  margin: 0 10px; /* Margin between icons */
  color: #051A6B; /* Icon color */
  font-size: 24px; /* Icon size */
  transition: transform 0.3s; /* Add a hover effect transition */
}

.social-links a:hover {
  transform: scale(1.1); /* Enlarge icon slightly on hover */
  color: white; /* Change color on hover, if desired */
}

/* Modal box styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Positioning context */
  z-index: 21; /* Sit on top of everything */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto; /* Center modal on screen */
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  width: 50%;
  max-width: 600px; /* Added max-width for responsiveness */
}

.modal-content-scrollable {
  max-height: 50vh; /* Maximum height of modal content */
  overflow-y: auto; /* Enable vertical scrolling */
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.submittable {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.submittable th,
.submittable td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.submittable th {
  background-color: #2C3E50;
  color: #ffffff;
  font-weight: bold;
}

.submittable tr:hover {
  background-color: #f4f4f4;
}

.submittable td {
  background-color: #ffffff;
  color: #333;
}


/* Responsive styles for mobile devices */
@media (max-width: 768px) {

  .show-all-button {
    width: 100%;
    max-width: none;
  }

  .submittable th,
  .submittable td {
    padding: 8px;
    font-size: 14px;
  }

  .modal-content {
    width: 90%;
    margin: 20% auto;
  }

  .page-container {
    padding: 0 10px;
  }
}
