/* styles.css */


/* Control font size of the main header text */
header h1 {
    font-size: 36px; /* Adjust the size as needed */
}

/* Control font size of the section headers */
.panel h2,
.search-form h2,
.resources h2 {
    font-size: 24px; /* Adjust the size as needed */
}

/* Control font size of the navigation links */
nav ul li a {
    font-size: 20px; /* Adjust the size as needed */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color: #0073aa;
    color: #0073aa;
    padding: 0px 0;
    text-align: left;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.logo {
    height: 50px;
    margin-right: 10px;
    background-color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

nav ul li {
    display: inline;
    margin-left: 7px;
    margin-right: 8px;
    margin-bottom: 1px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: 4px;
    margin-bottom: 4px;
}

nav ul li a .icon {
    height: 31px;
    width: 31px;
    margin-right: 12px;
}

main {
    display: flex;
    padding: 20px;
    justify-content: space-between;
}

.left-panel {
    width: 22%;
    padding-right: 5px;
    box-sizing: border-box;
}

.middle-panel {
    width: 36%;
    padding-left: 5px;
    box-sizing: border-box;
    overflow: hidden;
}
.right-panel {
    width: 36%;
    padding-left: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

.announcement {
    background-color: #ffebcc;
    border: 1px solid #ffa500;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.search-form, .resources, .panel {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-radius: 8px;
}

.search-form-container {
    display: flex;
    gap: 20px;
}

.search-form h2, .resources h2, .panel h2 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="radio"], input[type="checkbox"] {
    margin-right: 5px;
}

input[type="text"] {
    width: calc(90% - 20px);
    padding: 5px;
    margin-top: 5px;
}

select {
    width: calc(100% - 20px);
    padding: 5px;
    margin-top: 5px;
}

button {
    cursor: pointer;
}

button[type="form"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 4px;
}

button[type="form"]:hover {
    background-color: #005a8c;
}

.resources .resource-links a {
    display: block;
    color: #0073aa;
    text-decoration: none;
    margin-bottom: 10px;
}

.resources .resource-links a:hover {
    text-decoration: underline;
}

aside ul {
    list-style: none;
    padding: 0;
}

aside ul li {
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 8px;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

footer {
    background-color: #0073aa;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
