body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.site-header {
    background-color: #164d88;
    color: white;
    padding: 0px 0;
    text-align: center;
}

.container {
    display: flex;
    justify-content: space-between;
}

.sidebar {
    width: 40%;
    max-width: 200px;
    background-color: #f0f0f0;
}

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

.sidebar ul li a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
}

.sidebar ul li a:hover {
    background-color: #ddd;
}

.main-content {
    width: 100%;
    overflow-y: auto;
    height: calc(100vh - 200px); /* Adjust based on top and bottom heights */
    background-color: #eee;    
    padding: 10px;

}

.left, .right {
    margin: 10px;
}

.site-footer {
    background-color: #227b2e;
    color: white;
    padding: 10px 0;
    text-align: left;
    font-size: 12px;
}
