@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
.btn {
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: 500;
  background: #18171d;
  color: #eeeeee;
  border: 1px solid rgba(238, 238, 238, 0.15);
  transition: background 0.1s ease, border-color 0.1s ease;
}
.btn:hover {
  background: #17161c;
  border-color: rgba(238, 238, 238, 0.25);
}

.btn-primary {
  background: #a3b0f0;
  color: #FFFFFF;
  border: 1px solid #a3b0f0;
}
.btn-primary:hover {
  background: #a3b0f0;
  border-color: #a3b0f0;
}

.btn-secondary {
  background: #a3b0f0;
  color: #FFFFFF;
  border: 1px solid rgb(119.1495327103, 138.3457943925, 232.8504672897);
}
.btn-secondary:hover {
  background: rgb(141.0747663551, 157.1728971963, 236.4252336449);
  border-color: rgb(119.1495327103, 138.3457943925, 232.8504672897);
}

.file:hover {
  background: #141414;
}

.folder:hover {
  background: rgba(238, 238, 238, 0.05);
}

.lang-tag {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  background: #a3b0f0;
}

.lang-ruby {
  background: #a3b0f0;
}

.lang-python {
  background: #b3bef2;
}

.lang-shell {
  background: #a3b0f0;
}

.lang-js {
  background: #a3b0f0;
}

.lang-html {
  background: #b3bef2;
}

.lang-css {
  background: #a3b0f0;
}

.lang-c {
  background: #a3b0f0;
}

.lang-cpp {
  background: #a3b0f0;
}

.lang-markdown {
  background: #b3bef2;
}

.badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(238, 238, 238, 0.15);
  color: #eeeeee;
}

.badge-primary {
  background: #a3b0f0;
  color: #FFFFFF;
}

.badge-secondary {
  background: #a3b0f0;
  color: #FFFFFF;
}

.pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(238, 238, 238, 0.15);
  color: #eeeeee;
}

.pill-success {
  background: rgba(80, 200, 120, 0.25);
  color: #50c878;
}

.pill-warning {
  background: rgba(255, 180, 0, 0.25);
  color: #ffb400;
}

.pill-danger {
  background: rgba(255, 80, 80, 0.25);
  color: #ff5050;
}

:root {
  --white: #FFFFFF;
  --bg: #f5f6fa;
  --text: #222222;
  --accent: #a3b0f0;
  --primary: #a3b0f0;
  --primary-light: #b3bef2;
  --primary-dark: #a3b0f0;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

.mt-3 {
  margin-top: 12px;
}

.p-4 {
  padding: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #18171d;
    --text: #eeeeee;
  }
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: monospace, sans-serif;
  font-size: 15px;
  width: 100%;
  min-height: 100%;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #eeeeee;
  background: #18171d;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 16px 0;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 14px;
}

.text-muted {
  color: rgba(238, 238, 238, 0.55);
}

.text-secondary {
  color: rgba(238, 238, 238, 0.75);
}

.text-primary {
  color: #b3bef2;
}

.text-semibold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 190px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #18171d;
  border-right: 1px solid rgba(238, 238, 238, 0.12);
  padding: 16px 0;
}

.main-content {
  margin-left: 190px;
  padding: 32px;
}

.main-content-inner {
  background: #18171d;
  border-radius: 5px;
  padding: 32px;
  border: 1px solid rgba(238, 238, 238, 0.12);
  width: 100%;
  box-sizing: border-box;
}

.navbar-main-links,
.navbar-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.navbar-logo {
  font-weight: 600;
  font-size: 16px;
  color: #b3bef2;
  text-decoration: none;
  text-align: center;
  padding: 12px 0;
}

.nav-link {
  color: rgba(238, 238, 238, 0.85);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.1s ease;
}
.nav-link:hover {
  background: rgba(163, 176, 240, 0.12);
  color: #b3bef2;
}

.navbar-search input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid rgba(238, 238, 238, 0.15);
  background: #18171d;
  color: #eeeeee;
  font-size: 13px;
}
.navbar-search input:focus {
  outline: none;
  border-color: #a3b0f0;
  box-shadow: 0 0 0 2px rgba(163, 176, 240, 0.25);
}
.navbar-search input::placeholder {
  color: rgba(238, 238, 238, 0.5);
}

.card {
  background: #18171d;
  border-radius: 5px;
  padding: 24px;
  border: 1px solid rgba(238, 238, 238, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-header {
  font-size: 16px;
  font-weight: 600;
  color: #b3bef2;
}

.card-body {
  font-size: 14px;
  color: rgba(238, 238, 238, 0.85);
  line-height: 1.55;
}

.card pre {
  background: #18171d;
  border-radius: 5px;
  padding: 16px;
  font-size: 13px;
  color: #b3bef2;
  border: 1px solid rgba(238, 238, 238, 0.15);
  white-space: pre-wrap;
  overflow-x: auto;
}

.input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 5px;
  border: 1px solid rgba(238, 238, 238, 0.18);
  background: #18171d;
  color: #eeeeee;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #a3b0f0;
}
.input::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(238, 238, 238, 0.45);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-group label {
  font-size: 13px;
  color: rgba(238, 238, 238, 0.65);
  margin-left: 4px;
}

.markdown-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(238, 238, 238, 0.92);
}
.markdown-body > *:not(:last-child) {
  margin-bottom: 24px;
}
.markdown-body a {
  color: #b3bef2;
  text-decoration: none;
}
.markdown-body a:hover {
  text-decoration: underline;
}
.markdown-body code {
  background: rgba(24, 23, 29, 0.6);
  padding: 0.15rem 0.35rem;
  border-radius: 5px;
  font-size: 13px;
  font-family: monospace;
}
.markdown-body pre {
  background: #18171d;
  padding: 16px;
  border-radius: 5px;
  overflow-x: auto;
  border: 1px solid rgba(238, 238, 238, 0.15);
}
.markdown-body blockquote {
  border-left: 3px solid #b3bef2;
  padding-left: 16px;
  color: rgba(238, 238, 238, 0.75);
  background: rgba(24, 23, 29, 0.2);
  border-radius: 5px;
}
.markdown-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.markdown-body table th, .markdown-body table td {
  border: 1px solid rgba(238, 238, 238, 0.2);
  padding: 12px;
}
.markdown-body table th {
  background: rgba(24, 23, 29, 0.3);
  font-weight: 600;
}
.markdown-body table tr:nth-child(even) {
  background: rgba(24, 23, 29, 0.15);
}

ul {
  list-style: none;
  padding-left: 1em;
}
ul li {
  margin: 0.2em 0;
}
ul li .tree-toggle {
  cursor: pointer;
  user-select: none;
  color: #555;
}
ul li .tree-toggle::before {
  content: "> ";
  transition: transform 0.1s ease;
}
ul li .tree-toggle.expanded::before {
  transform: rotate(90deg);
}
ul li .tree-children {
  padding-left: 1em;
}
ul li .tree-children.hidden {
  display: none;
}
ul li .perms {
  font-family: monospace;
  margin-right: 0.5em;
}

.branch-select {
  display: inline-block;
  position: relative;
  font-size: 0.85rem;
  color: #eeeeee;
}
.branch-select select {
  appearance: none;
  background-color: #18171d;
  border: 1px solid #17161c;
  border-radius: 5px;
  padding: 4px 8px;
  color: #eeeeee;
}
.branch-select select:hover {
  border-color: #a3b0f0;
}
.branch-select select:focus {
  border-color: #a3b0f0;
  outline: none;
}
.branch-select::after {
  content: "▾";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
  font-size: 0.7em;
}

.hover-parent {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.hover-parent:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #18171d;
  border-radius: 0.5px;
  padding: 16px;
  width: 260px;
  opacity: 0;
  pointer-events: none;
  border: 0.5px solid rgba(238, 238, 238, 0.12);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-dropdown hr {
  border: none;
  border-top: 1px solid rgba(238, 238, 238, 0.12);
  margin: 16px 0;
}
.nav-dropdown .nav-dropdown-item {
  padding: 12px 0;
  color: rgba(238, 238, 238, 0.85);
  text-decoration: none;
  border-radius: 5px;
}
.nav-dropdown .nav-dropdown-item:hover {
  background: rgba(163, 176, 240, 0.12);
  color: #b3bef2;
}
.nav-dropdown .nav-dropdown-header {
  font-weight: 600;
  margin-bottom: 12px;
  color: #b3bef2;
}
.nav-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header, .footer {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background: linear-gradient(90deg, #232128 0%, #26252c 100%);
  color: var(--white);
  border-radius: var(--radius-md);
}
.header nav, .footer nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}
.header nav a, .footer nav a {
  color: var(--white);
  text-decosourcelon: none;
  font-weight: 500;
}
.header nav a:hover, .footer nav a:hover {
  color: var(--primary);
}

.branch-selector-container {
  margin: 20px 0;
  padding: 10px 15px;
  background-color: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg);
  display: flex;
  align-items: center;
  gap: 15px;
}
.branch-selector-container label {
  font-weight: bold;
  color: var(--text);
  font-size: 14px;
  white-space: nowrap;
}
.branch-selector-container #branch-select {
  padding: 8px 12px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid var(--bg);
  border-radius: var(--radius-md);
  background-color: var(--bg);
  color: var(--text);
  cursor: pointer;
}
.branch-selector-container #branch-select:hover {
  border-color: var(--primary);
}
.branch-selector-container #branch-select option {
  background-color: var(--bg);
  color: var(--text);
  padding: 5px 0;
}
.branch-selector-container #branch-select option[selected][disabled] {
  font-style: italic;
  opacity: 0.8;
}
.branch-selector-container #branch-select option[disabled] {
  font-weight: bold;
  opacity: 0.7;
}

.blame {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #eeeeee;
  background: #18171d;
}
.blame th, .blame td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.06);
}
.blame th {
  background: #18171d;
  color: #eeeeee;
  font-weight: 600;
  text-align: left;
}
.blame td.commit,
.blame td.author,
.blame td.date {
  background: rgb(26.31, 25.32, 31.26);
  color: #eeeeee;
  font-weight: 500;
  vertical-align: top;
}
.blame td.line {
  width: 60px;
  text-align: right;
  font-family: monospace;
  color: rgba(238, 238, 238, 0.55);
}
.blame td.code {
  font-family: monospace;
  color: #eeeeee;
}
.blame td.code pre {
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  white-space: pre-wrap;
}
.blame tr.blame-row:nth-child(even) td.code {
  background: rgba(255, 255, 255, 0.015);
}
.blame tr.blame-row:hover td.code {
  background: #17161c;
}

.lang-bar {
  display: flex;
  height: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lang-bar .lang-ruby {
  background: #a3b0f0;
}
.lang-bar .lang-python {
  background: #b3bef2;
}
.lang-bar .lang-shell {
  background: #a3b0f0;
}
.lang-bar .lang-js {
  background: #a3b0f0;
}
.lang-bar .lang-html {
  background: #b3bef2;
}
.lang-bar .lang-css {
  background: #a3b0f0;
}
.lang-bar .lang-c {
  background: #a3b0f0;
}
.lang-bar .lang-cpp {
  background: #a3b0f0;
}
.lang-bar .lang-markdown {
  background: #b3bef2;
}

.top-left-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  z-index: 9999;
  pointer-events: none;
}

/*# sourceMappingURL=gl-dark.css.map */
