
body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #5a5a5a;
}

select, button, input[type="text"] {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0.5rem;
}

button {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.question {
    margin-bottom: 1rem;
}

.message {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

thead {
    background-color: #f2f2f2;
}

th, td {
    padding: 0.8rem;
    border: 1px solid #ddd;
}

a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #008CBA;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

a:hover {
    background-color: #007bb5;
}

.question-text {
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: left;
}

.options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 1rem;
    text-align: left;
}

.option-label {
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.option-label input[type="radio"] {
    margin-right: 0.5rem;
}

.country-name {
    color: #008CBA;
}
