/* Base Styles */
body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 9pt;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #000000;
    background-color: #FFFFFF;
}

/* Header */
#header {
    background-color: #1d3887;
    color: #FFFFFF;
    padding: 10px 20px;
}

#header h1 {
    margin: 0;
    font-size: 14pt;
    font-weight: bold;
}

#header h1 small {
    font-size: 10pt;
    font-weight: normal;
}

/* Layout Container */
#container {
    display: flex;
    flex: 1;
}

/* Sidebar */
#sidebar {
    width: 220px;
    background-color: #cdd1e7;
    padding: 20px;
    border-right: 1px solid #b2b6c5;
}

#sidebar h3 {
    font-size: 11pt;
    margin-top: 0;
}

#sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#sidebar li {
    margin-bottom: 8px;
}

#sidebar a {
    text-decoration: none;
    color: blue;
}

#sidebar a:visited {
    color: darkblue;
}

#sidebar a:hover {
    text-decoration: underline;
    color: red;
}

#sidebar ul ul {
    padding-left: 15px;
    margin-top: 5px;
}

/* Main Content */
#content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

/* Footer */
#footer {
    background-color: #f0f0f0;
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #ccc;
    font-size: 8pt;
}

/* Typography and other elements */
h1, h2, h3, h4 {
    font-family: Helvetica, Arial, sans-serif;
}

h1 { font-size: 14pt; font-weight: bold; }
h2 { font-size: 12pt; font-weight: bold; }
h3 { font-size: 12pt; color: red; }
h4 { font-size: 12pt; }

a:link { color: blue; text-decoration: none; }
a:visited { color: darkblue; }
a:hover { color: red; text-decoration: underline; }

pre {
    font-family: "Courier New", Courier, monospace;
    font-size: 8pt;
    background-color: #f8f8f8;
    padding: 10px;
    border: 1px solid #ddd;
}

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

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