/* General styling for the body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Container for the content */
.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.header {
    text-align: center;
    margin: 20px 0;
}

.header img {
    max-width: 100px;
    height: auto;
}

/* Header styling */
h1, h3 {
    font-size: 20px;
    text-align: center;
    color: #333;
    margin-top: 20px;
}
h2 {
    font-size: 20px;
    text-align: center;
    color: #333;
    margin-top: 20px;
}

/* Form styling */
form {
    margin: 20px 0;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

/* Label styling */
label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Input styling */
input[type="text"],
input[type="number"] {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

input[type="radio"] {
    margin-right: 10px;
}

/* Submit button styling */
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Link styling */
a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
    font-size: 16px;
}

a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }

    input[type="text"],
    input[type="number"] {
        width: 100%;
    }

    table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        border-bottom: none;
        padding: 10px 0;
    }

    table td:last-child {
        border-bottom: 1px solid #ddd;
    }

    label {
        margin-bottom: 5px;
    }

    .options label {
        display: block;
        margin-bottom: 5px;
    }
}
