body {
    font-family: sans-serif;
    background-color: #3c3c3c;
    color: #eee;
    margin: 0;
    display: flex;
}

.container {
    width: 100%;
    display: flex;
}

.sidebar {
    position: fixed;
    width: 220px;
    height: 100vh;
    background-color: #222;
    padding-bottom: 800px;
    padding-top: 20px;
    padding-left: 20px;
}

.content {
    flex: 1;
    margin-left: 230px; /* Adjust for sidebar width + padding */
    padding-left: 30px;
    background-color: #3c3c3c; /* Set background to match body */
}

.content h1 {
    text-align: center;
}

.content p {
    padding-left: 30px;
}

.file_list {
    padding-left: 15px;
    list-style-type: none;
}

.folder-name {
    cursor: pointer;
    padding-left: 4px;
}

.folder-name a {
    color: #ffffff;
    text-decoration: none;
}

.file_list a {
    color: #53e7c7;
    text-decoration: none;
}

.content {
    flex-grow: 1; /* Allow content section to fill remaining space */
    padding: 20px;
}

ul {
    list-style-type: none;
}

ul li {
    margin: 5px;
}

.sublist1 {
    margin: 5px;
    list-style-type: none;
    text-decoration: none;
    padding-left: 10px;
}

.sublist1 li {
    color: #ffffff;
}

.sublist1 a {
    color: #4bf3a0;
}