/* Sets up the main body styling with dark blue background and padding */
body {
    font-family: Arial, sans-serif;
    background-color: #00008B;
    color: #ecf0f1;
    margin: 0;
}

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

/* Styles the header container at the top of the page */
.header {
    background-color: #000066;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.innerheader {
    width: 90%;
}

.title h1 {
    margin: 0;
    font-size: 24px;
}

main {
    width: 90%;
}

/* Styles individual content sections for tables and forms */
section {
    background: #000066;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

h2 {
    color: #ecf0f1;
    margin-top: 0;
}

p {
    color: #d0d3d4;
}

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

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

th {
    background-color: #1abc9c;
    color: white;
}

caption {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #ecf0f1;
}

.image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ttt td {
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
}

form fieldset {
    border: 1px solid #1a1a80;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #000066;
}

form label {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    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: #00004d;
    color: #ecf0f1;
    box-sizing: border-box;
}

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

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

.credits {
    font-size: 0.9em;
    color: #d0d3d4;
}

.credits a {
    color: #1abc9c;
}