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

h1 {
    color: #333;
    text-align: center;
    border-radius: 20px;
    padding: 10px; 
}

#description {
    color: #666;
    text-align: center;
}

form {
    max-width: 500px;
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="radio"] {
    margin-right: 5px;
}

label[for="male"], label[for="female"] {
    display: inline-block;
    text-align: center;
    justify-content: center;
    color: #333;
}

select, input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #ccc; 
}

select, input {
    background-size: 12px;
    background-position: right center;
    padding-right: 20px;
}

option {
    background-color: #fff;
    color: #333;
}

select:focus, input:focus, textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.7);
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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

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

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: rgb(0, 110, 255);
    color: white;
}
