
body {
    font-family: Arial, sans-serif;
    margin: 40px;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

th, td {
    padding: 10px 20px;
    border: 1px solid #ddd;
}

table tr.header-row {
    background-color: #a7d129;
    color: #ffffff;
}

th {
    background-color: #ffffff;
    color: #000;
    font-weight: bold;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

caption {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    color: #555;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    color: #a7d129;
    margin-top: 20px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
}


.version {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.language-switch {
    position: absolute; /* position it relative to .top-bar */
    left: 50%;
    transform: translateX(-50%); /* perfectly center horizontally */
    padding: 8px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #a7d129;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

.language-switch:hover {
    background-color: #8cb020;
}