/* Basic styling for Uodegele temporary website */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333333;
}

header {
  background-color: #f5f5f5;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
}

nav a:hover {
  color: #0070c0;
}

.language-switch a {
  margin-left: 1rem;
  text-decoration: none;
  color: #0070c0;
  font-weight: normal;
}

.language-switch a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background-color: #f5f5f5;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  font-size: 0.875rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

table th, table td {
  border: 1px solid #e0e0e0;
  padding: 0.5rem;
  text-align: left;
}

table th {
  background-color: #f0f0f0;
}

table caption {
  caption-side: top;
  font-weight: bold;
  margin-bottom: 0.5rem;
}