/* <--main body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #e6e6fa ;
    color: #ecf0f1;
    margin: 0;
    vertical-align: middle;
}

.descriptions {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 20px;
    vertical-align: middle;
}

/* <-- header container */ 
.header {
    background-color: #6a5acd ;
    color: #ecf0f1;
    margin-bottom: 20px;
    vertical-align: middle; 
}


main {
    width: 90%;
}

/*<--Styles individual sections for tables and forms */
section {
    background: #6a5acd ;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    vertical-align: middle; 
}

table {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    vertical-align: middle;
}

th, td {
    border: 1px solid #8b008b  ;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    color: #ecf0f1;
}


/* Styles input text fields and dropdowns inside the form */
form input[type="text"],
form select,
form textarea {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #1a1a80;
    background-color: #20b2aa ;
    color: #8b008b ;
    box-sizing: border-box;
}

/* Styles the submit button for mailto action */
form input[type="submit"] {
    background-color: #6a5acd ;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #8b008b  ;
}