body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 10px;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header, section {
    margin-bottom: 20px;
}

h1, h2 {
    color: #0056b3;
}

.language-selector {
    text-align: right;
    margin-bottom: 15px;
}

.language-selector button {
    padding: 5px 10px;
    border: 1px solid #0056b3;
    background-color: #fff;
    color: #0056b3;
    cursor: pointer;
    border-radius: 5px;
}

.language-selector button:hover {
    background-color: #0056b3;
    color: #fff;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.email-notice {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.7em;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    min-width: 150px;
}

/* --- COLOR CHANGE FOR TABLE HEADER (TITLE) --- */
th {
    background-color: #0056b3; /* Blue background */
    color: white; /* White text for better contrast */
}

/* --- COLOR CHANGE FOR TABLE ROWS --- */
tr {
    background-color: #ffffff; /* White background for odd rows (1, 3, 5...) */
}

tr:nth-child(even) {
    background-color: #eaf2f8; /* Light blue background for even rows (2, 4, 6...) */
}

td:not(:first-child) {
    text-align: left;
}

input[type="radio"] {
    cursor: pointer;
    margin-right: 5px;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button[type="submit"]:hover {
    background-color: #218838;
}

#results {
    background-color: #e9f7ef;
    padding: 15px;
    border-radius: 5px;
    border-left: 5px solid #28a745;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 4px;
}