/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header, footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

main {
    padding: 20px;
}

/* Style to center the form and table max-width: 1920px; */
form {    
    margin: 30px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Table to organize the form elements */
.form-table {
    width: 100%;
    border-collapse: collapse;
}

/* Ensuring text doesn't stick to border edges */
.form-table td {
    padding: 10px;
    vertical-align: top;
    border: none; /* Invisible borders */
}

/* Styling the label cells to align them properly with inputs */
.form-table label {
    font-weight: bold;
}

/* Textareas have increased width */
.large-textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Style for select elements */
select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Button style */
.submit-button {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Button hover effect */
.submit-button:hover {
    background-color: #0056b3;
}

.form-table td:first-child {
    width: 20%;
}

.form-table td:last-child {
    width: 80%;
}
