body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300; /* You can adjust the weight as needed */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px; /* Adjust the max width of the entire container as needed */
    margin: auto; /* Center the container */
}

nav {
    flex: 0 0 200px; /* Fixed width for navigation */
    border-right: 1px solid #ccc;
    padding: 10px;
    height: 100vh; /* Full height */
    overflow-y: auto; /* Scrollable if content is too long */
}

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

nav ul li a {
    text-decoration: none;
    color: blue;
    display: block; /* Makes the entire area clickable */
    padding: 8px 0; /* Padding for better clickability */
}

.content {
    flex: 0 0 800px; /* Fixed width for content */
    padding: 20px;
    overflow-y: auto; /* Scrollable content */
}

section {
    display: none; /* Initially hide all sections */
}

.sectionImage {
    width: 800px;
}

nav ul li {
    margin-bottom: 0%; /* Adjust the space between items */
    padding-bottom: 0%;
    /* Other styling for list items */
}

nav ul li a {
    margin-bottom: 0%; /* Adjust the space between items */
    padding-top: 0%;
    padding-bottom: 0%;
    /* Other styling for list items */
}

.centerTable {
    margin-left: auto;
    margin-right: auto;
    width: 450px; /* or any specific width */
}

.referenceBox{
	margin-bottom: 100px;
	overflow: hidden;
}

.leftReference{
	width: 100%;
}

.referenceImage{
	float: right;
	width:40%;
	margin-left:20px;
}

/* Adjust the widths for smaller screens */
@media screen and (max-width: 1200px) {
    .container {
        flex-direction: column;
        max-width: 100%;
    }
    nav, .content {
        flex: none;
        width: 100%;
        height: auto;
    }
    nav {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
    .sectionImage {
        width: 90%;
    }
}
