@font-face {
    font-family: 'Unifont';
    src: url('/font/UnifontExMono.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Unifont', sans-serif;
    border: none;
    box-shadow: none;
    text-shadow: none;
    background-image: none;
}

html {
    background-color: white;
}

body {
    background-color: white;
    color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 15px;
    background: white;
    color: black;
    font-size: 14px;
    flex-shrink: 0;
}

.navbar-title {
/*    font-weight: bold; */
}

/* Main Content Area */
.content-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 1.5em 0;
}

.window {
    width: 65em;
    background-color: transparent;
    display: flex;
    flex-direction: row; /* Side-by-side panels */
    gap: 1.5em; /* Gap between main content and side panel */
}

.main-content, .side-panel {
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex-grow: 1; /* Main content takes up available space */
}

.side-panel {
    width: 280px; /* Fixed width for the side panel */
    flex-shrink: 0;
}

.side-panel .window-content {
    padding: 10px; /* Less padding for the side panel */
}

.link-item {
    display: flex;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.link-item:hover {
    background-color: #f0f0f0;
}

.link-item img {
    display: none;
}

/* Window Title Bar */
.title-bar {
    padding: 8px 12px;
    background: transparent;
    flex-shrink: 0;
}

.body-title {
    font-size: 16px;
    text-transform: lowercase;
    color: black;
}

/* Window Content */
.window-content {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto; /* Make content scrollable */
    font-size: 16px;
    line-height: 1.6;
}

.window-content a,
.window-content a:visited {
    color: black;
    text-decoration: underline;
}
.window-content hr {
    border: 0;
    border-top: 1px solid #eee; /* Light separator */
    margin: 1em 0;
}
ul.custom-bullets {
  list-style: none;
  padding-left: 2em;
}
ul.custom-bullets li {
    padding-bottom: 0.5em;
}

/* Custom bullet point */
ul.custom-bullets li::before {
  content: '•';
  display: inline-block;
  margin-left: -1.5em;
  margin-right: 0.5em;
  width: 1em;
  text-align: center;
}

/* File Browser Styles */
.file-browser-table {
    width: 100%;
    border-collapse: collapse;
}

.file-browser-table th, .file-browser-table td {
    padding: 8px 4px;
    text-align: left;
    white-space: nowrap;
}

.file-browser-table th {
/*    font-weight: bold; */
}

.file-browser-table td:first-child {
    width: 100%;
}


.file-browser-table a,
.file-browser-table a:visited {
    text-decoration: underline;
    color: black;
}

.file-browser-table a:hover {
    text-decoration: underline;
}

.readme-content {
    font-family: 'Unifont', sans-serif;
    background-color: transparent;
    padding: 15px;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1;
}top: 20px;
    font-size: 16px;
    line-height: 1;
}d;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1;
}
