/* Update the styles for the input and textarea elements in the form view */
#formView input,
#formView textarea,
#formView button {
    display: block;
    width: 100%;
    padding: 12px; /* Increased padding for more space inside */
    margin-bottom: 15px; /* Increased margin for more space below */
    box-sizing: border-box; 
    border-radius: 6px; /* Slightly more rounded corners */
    border: 1px solid #ccc;
    font-size: 16px; /* Larger font size for better readability */
}

/* Specifically style the textarea */
#formView textarea {
    height: 800px; /* Adjust this value to set the desired height */
    resize: vertical; /* Allows the user to resize it vertically */
}

/* Also, ensure the buttons have a good look */
#formView button {
    background-color: #5c67f2;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px; /* Larger button text */
    padding: 15px; /* Larger button padding */
}
