body {
    font-family: 'Calibri', sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    color: #333;
}

header nav {
    background-color: #333;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0;
    padding: 15px 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
}

header nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

main p {
    font-size: 18px;
    line-height: 1.6;
}

main p span {
    font-weight: bold; /* Highlights labels like "Email:" or "Office Location:" */
    color: #333; /* Keeps a consistent color for labels */
}

main p a {
    color: #0066cc; /* Makes links stand out with a blue color */
    text-decoration: none; /* Removes the underline from links */
}

main p a:hover {
    text-decoration: underline; /* Adds underline when hovering over links */
}

main ul {
    list-style-type: disc; /* Adds bullet points */
    padding-left: 20px; /* Indents the list */
    margin-top: 10px;
    margin-bottom: 20px;
	font-size: 18px;
}

main ul li {
    margin-bottom: 10px; /* Adds space between list items */
}

main ul li a {
    color: #0066cc; /* Makes links stand out */
    text-decoration: none; /* Removes underline from links */
}

main ul li a:hover {
    text-decoration: underline; /* Adds underline when hovering */
}

main ul li strong {
    font-weight: bold; /* Highlights the labels */
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

//* CSS for CSIG pages *//
table.csig-form-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

table.csig-form-table th, table.csig-form-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

table.csig-form-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

table.csig-form-table .centered {
    text-align: center;
}

blockquote {
    font-style: italic;
    margin: 10px 0;
    padding-left: 20px;
    border-left: 3px solid #ccc;
}

/* CSS for CSIG_Items Table */
table.csig-scales-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

table.csig-scales-table th, table.csig-scales-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

table.csig-scales-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

table.csig-scales-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table.csig-scales-table tbody tr:hover {
    background-color: #f1f1f1;
}


/* CSS for CSIE_Items Table */
table.csie-scales-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    text-align: left;
}

table.csie-scales-table th, table.csie-scales-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

table.csie-scales-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

table.csie-scales-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table.csie-scales-table tbody tr:hover {
    background-color: #f1f1f1;
}


/* CSS for Inventory Scoring Pages */
pre.scoring-syntax {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    padding: 10px;
    font-family: "Consolas", monospace;
    font-size: 13px;
    overflow-x: auto;
    white-space: pre-wrap;
    line-height: 1.5;
}

/* In Lists of Publications, increase line spacing within publications */
ul {
    list-style-type: disc;
    margin: 20px;
    padding: 10px 20px;
    line-height: 1.6;
}

/* Ordered Lists */
header nav ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
header nav ol li {
    margin: 0;
    padding: 15px 20px;
}
header nav ol li a {
    text-decoration: none;
    color: #fff;
}
header nav ol li a:hover {
    text-decoration: underline;
}

