* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #d4d4d4;
    font-family: 'Ubuntu Mono', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 200px;
}

.cursor-info {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #808080;
    font-size: 12px;
}

.panes-container {
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 95vw;
    background: #ffffff;
    padding: 2px;
    margin-bottom: 10px;
}

.pane {
    background: #0a0e1a;
    color: #c0c0c0;
    border: none;
    outline: none;
    font-family: 'Ubuntu Mono', monospace;
    font-size: 14px;
    padding: 0 1px;
    resize: none;
    white-space: pre;
    overflow: hidden;
}

.info {
    position: fixed;
    bottom: 10px;
    left: 10px;
    color: #808080;
    font-size: 12px;
}

.status-bar {
    background: #1e1e1e;
    color: #808080;
    font-size: 12px;
    padding: 4px 10px;
    display: flex;
    gap: 20px;
    border-top: 1px solid #333;
    width: fit-content;
    margin: 10px auto 0;
}

.status-bar span {
    white-space: nowrap;
}

.selection-highlight {
    position: fixed;
    background: #49483e;
    opacity: 0.6;
    pointer-events: none;
}

#block-cursor {
    position: fixed;
    background: #f8f8f2;
    opacity: 0.5;
    pointer-events: none;
}
