body {
  font-family: 'Monda', sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 40px;
  background-color: #f4f4f4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #f4f4f4;
  padding: 20px;
  text-align: center;
  color: #333;
}

.logo {
  width: 200px;
  height: 85px;
  object-fit: contain;
}

.intro-text {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  margin-top: 15px;
  line-height: 1.4;
}

.content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

#searchInput {
  width: 100%;
  max-width: 500px;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-family: 'Monda', sans-serif;
  font-size: 13px;
  text-align: center;
  box-shadow: 2px 2px 4px #bbbbbb;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
}

.filters label {
  font-size: 13px;
  font-weight: 400;
  user-select: none;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid #aaa;
  padding: 10px;
  text-align: center;
  font-size: 13px;
}

th {
  font-weight: 600;
  background-color: #dddddd;
}

.hidden {
  display: none;
}

tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

tbody tr:nth-child(even) {
  background-color: #eeeeee;
}

.lang-link {
  margin: 0 4px;
  font-weight: 600;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lang-link:hover {
  color: #cc0000;
}

footer {
  background-color: #f4f4f4;
  color: #cc0000;
  font-size: 13px;
  text-align: center;
  padding: 10px;
  margin-top: auto;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .intro-text {
    padding: 0 10px;
    text-align: justify;
  }

  th, td {
    font-size: 12px;
    padding: 8px;
  }

  #searchInput {
    font-size: 12px;
  }

  .lang-link {
    font-size: 12px;
  }

  footer {
    font-size: 12px;
  }
}
