/* CSS Document */
,<style>body {
    margin: 0;
    padding: 0;
    font-family: arial, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif"sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* 10mm Top Bar */
.top-bar {
    background-color: #2876C8; /* Deep blue */
    color: white;
    height: 38px; /* Approximately 10mm */
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar h1 {
    margin: 0;
    font-size: 25px;
}

/* Wrapper to hold nav and content */
.wrapper {
    display: flex;
    margin-top: 38px; /* Height of header */
    flex: 1;
}

/* Left Nav - Lighter Blue */
.sidebar {
    background-color: #264884; /* Lighter shade of blue */
    width: 200px;
    padding: 20px 0;
	text-align: center;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li a {
    display: block;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}

.sidebar ul li a:hover {
    background-color: #004a99; /* Darker on hover */
}

/* Soft Gray Content Pane */
.content {
    background-color: #f4f4f4; /* Soft gray */
    flex: 1;
    padding: 30px;
}
</style>