/* this should override the main css */

* {
    -webkit-font-smoothing: antialiased;
}

.home-hero {
    color: black;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-family: 'titillium web';
}

.home-hero h1 {
    font-weight: bold; 
    text-transform: uppercase;
}

.home-hero p {
    font-size: 14px;
}

.sidebar {
    width: 44px;
    background: #222;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0;
    gap: 4px;
    height: 100vh;
    border-right: 1px solid #80808080;
}

.sidebar-button svg {
    width: 16px;
    height: 16px;
}

.sidebar-button {
    width: 44px;
    height: 44px;
}

.sidebar-button:hover {
    background: #80808033;
}

.file-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.file-list a {
    display: block;
    padding: 4px 10px;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid transparent;
    background: none;
    font-size: 0.8125rem;
    font-size: 13px;
    border: 0;
}

.file-list a:hover, .file-list a:focus-visible {
    border-color: var(--panel-border);
    background: var(--panel-hover);
    background: #80808033;
    color: var(--text-color);
    border: 0;
}


.files {
    background: transparent;
    min-width: 180px;
    width: 220px;
    -box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.0);
    border-right: 1px solid #80808033;
}

.editor {
    background: transparent;
    -background: #111;
    min-width: 360px;
    width: 480px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 0;
}

.divider {
    width: 10px;
    cursor: col-resize;
    background: transparent;
    transition: background 0.2s ease;
}

.editor-prefix {
  font-size: 12px;
}

.editor-header input {
    flex: 1;
    background: #80808011;
    border: 1px solid #80808033;
    color: var(--text-color);
    padding: 8px 16px;
    font-size: 12px;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    width: 100%;
    border-radius: 0px;
}

.panel h2 {
    margin: 0 0 12px;
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    letter-spacing: 0em;
    color: var(--muted-text);
    color: gold;
}

.panel.editor h2 { display: none; }