#sidebar {
    position: fixed;
    width: 200px;
    height: 100%;
    padding: 10px;
    background-color: #f4f4f4;
    border-right: 1px solid #ddd;
}

#sidebar h2 {
    padding-bottom: 10px;
    font-size: 22px;
    color: black;
}

#sidebar a h4 {
    padding-bottom: 5px;
}

#title {
    position: fixed;
    left: 200px;
    width: calc(100% - 200px);
    padding: 15px;
    font-size: 30px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

#main {
    position: fixed;
    overflow-x: hidden;
    overflow-y: scroll;
    top: 75px;
    left: 200px;
    width: calc(100% - 200px);
    height: calc(100% - 105px);
    padding: 15px;
    font-size: 16px;
}

#footer {
    position: fixed;
    text-align: center;
    bottom: 0;
    width: 100%;
    padding: 5px;
    background-color: #f4f4f4;
    border-top: 1px solid #ddd;
}

#main h2 {
    padding-top: 12px;
}

#main h4 {
    padding-top: 2px;
}

#main ul {
    position: relative;
    left: 20px;
}

.fiji-menu {
    color: rgb(200, 100, 0);
    font-weight: 300;
}

.file {
    color: rgb(133, 0, 0);
    font-weight: 500;
}

.param {
    color: rgb(0, 100, 255);
    font-weight: 500;
}

.arg {
    color: rgb(0, 50, 0);
    font-weight: 500;
}