
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    background-image: hieght='100%';
    color: #4A4A4A;
    margin: 0;
    padding: 0;
    align-items: center;
    display:flex;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 20px;
    border: 1px solid #D3D3D3;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}

h1, h2, h3 {
    color: #B22222;
}

button {
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #B22222;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #8B0000;
}

label{
text-align: right;
font-weight: bolder;
}

input, textarea, label {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: px solid #D3D3D3;
    display: block;
}

.submit-btn {
    background-color: #8B4513;
}

.submit-btn:hover {
    background-color: #A0522D;
}

input[type="radio"] {
    width: auto;
    margin-right: 5px;
}
table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

th {
    background-color: #B22222;
    color: white;
    font-weight: bold;
}

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

tr:hover {
    background-color: #f1f1f1;
}

td {
    font-size: 16px;
}

thead {
    position: sticky;
    top: 0;
    background-color: #B22222;
}
