body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    display: flex;
    height: 100vh;
}
hr{
    max-width: 80%;;
}
.sidebar {
    width: 300px;
    background: #f4f4f4;
    border-right: 1px solid #ccc;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}
/* pre::before{
    content: 'code';
    position: absolute;
    background-color: #007bff;
    left: 0;
    top:-10px;
    padding: 0 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
} */
pre .language-C\#::before {
    content: 'C#';
    position: absolute;
    background-color: #6b05af;
    color: white;
    font-size: 12px;
    font-weight: bold;
    left: -2px;
    top: -10px;
    padding: 0 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    white-space: nowrap;
}
pre .language-python::before {
    content: 'python';
    position: absolute;
    background-color: #6b05af;
    color: white;
    font-size: 12px;
    font-weight: bold;
    left: -1px;
    top: -10px;
    padding: 0 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    white-space: nowrap;
}
pre {
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    border: 2px solid #6b05af;
    box-shadow: 0 0 10px rgba(0,0,0,.6);
}
pre code{
    background-color: #333;
    color: #fff;
    padding: 0 5px;
    border-radius: 5px;
}
code{
    background-color: #f7e9ff;
    color: #000;
    padding: 0 5px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,.2);

}
.logo{
    max-height: 80px;
    display:block;
    margin: 20px;
    margin-bottom: 0 !important;
}
.nav-header{
    color: #000000;
    margin: 20px 20px;
    font-weight:200;
}
.sidebar ul {
    list-style-type: none;
    padding-left: 10px;
}

.sidebar li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.sidebar li:hover {
    background: #ddd;
}

.sidebar .folder {
    font-weight: bold;
    cursor: pointer;
}

.sidebar .file {
    padding-left: 20px;
    font-weight: normal;
}

.content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
}

#file-content {
    max-width: 100%;
    line-height: 1.5;
}
.sidebar .file.active {
    background-color: #6b05af; /* Highlight color */
    color: white; /* Text color for the active file */
    /* font-weight: bold; */
    border-radius: 4px;
}

#file-heading{
    color: #6b05af;
    font-weight: 200;
}
h1{
    color: #6b05af;
}
h2{
    color: #5e009c;
}

#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #6b05af;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: none; /* Hidden by default */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

#scroll-to-top:hover {
    background-color: #6b05af;
}