/* Base styles */
* {
    /*border: lime solid 5px; */
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;    
}

.container {
    display: flex;
    height: 100%;
}

.sidebar {
    width: 200px;
    background-color: #CD7F32;  /* Sidebar background */
    padding: 20px;
    color: white;
    top: 0;
    left: 0;
    flex: 0 0 200px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

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

.sidebar nav ul li {
    margin-bottom: 10px;
}

.sidebar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.content {
    margin-left: 2px;  /* Adjust for the sidebar width */
    padding: 20px;
    background-color: #F5F5DC;  /* Content background */
    color: #000000;
    min-height: 100vh;
    display: flex;
    flex-grow: 1;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    flex-grow: 1;
}

.main-content code {
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 1rem;
    color: #000000;
}

/**
 * Make code blocks display as blocks and give them the appropriate
 * font size and padding.
 *
 * https://github.com/mkdocs/mkdocs/issues/855
 * https://github.com/mkdocs/mkdocs/issues/834
 * https://github.com/mkdocs/mkdocs/issues/233
 */
pre code {
    white-space: pre;
    word-wrap: normal;
    display: block;
    padding: 12px;
    font-size: 12px;
    color: #000;
    background: #b8b8b8;
    border-radius: .25rem;
    border-color: #000000;
    border-width: 2px;
    border-style: solid;
}