body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    padding: 20px;
}

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

form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    margin-bottom: 30px;
}

input[type="text"],
input[type="radio"] {
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    background-color: #3478f6;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #245dc1;
}

table {
    background: white;
    border-collapse: collapse;
    margin-top: 20px;
    width: 100%;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ccc;
}

a {
    display: inline-block;
    margin: 10px 0;
    color: #3478f6;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
