.file-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 18px;
}

.file-list {
    display: grid;
    gap: 7px;
    margin: 16px 0;
    max-height: 470px;
    overflow: auto;
}

.file-list button {
    text-align: left;
    background: #f3f4f1;
    font-family: "Cascadia Code", monospace;
    font-size: 12px;
}

.file-list button.active {
    background: #161a22;
    color: #fff;
}

.code-panel textarea {
    width: 100%;
    min-height: 570px;
    resize: vertical;
    background: #171922;
    color: #eef1e8;
    border: 0;
    border-radius: 15px;
    padding: 20px;
    font: 13px/1.75 "Cascadia Code", Consolas, monospace;
    tab-size: 4;
}

.editor-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
}

.editor-actions small {
    color: #6f7480;
}

@media (max-width: 1050px) {
    .file-layout {
        grid-template-columns: 1fr;
    }
}
