/* Ling Language Reference — custom styles */
:root {
    --sidebar-width: 280px;
}

.content main {
    max-width: 860px;
}

code {
    font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
}

table {
    width: 100%;
    margin-bottom: 1.2em;
}

th {
    background: var(--sidebar-bg);
}

/* mdBook FontAwesome: avoid hard failures when icon set lacks 'github' (regular). */
.fa-github::before {
    content: "\f09b"; /* 'github' fallback from Font Awesome v6 */
}


/* Language selector (lang.js) */
#ling-lang-select {
  background: #11151c; color: #9fe7ff; border: 1px solid #2c3e64;
  border-radius: 6px; padding: 2px 8px; margin-left: 8px; font-size: 0.85em;
  cursor: pointer;
}
#ling-lang-select:hover { border-color: #00d2ff; }
