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

html, body {
    height: 100%;
    overflow: hidden;
    background: #1a1b26;
}

#terminal-container {
    height: 100%;
    width: 100%;
}

/* xterm.js fills container */
#terminal-container .xterm {
    height: 100%;
    padding: 4px;
}

#status-bar {
    position: fixed;
    top: 8px;
    right: 12px;
    z-index: 10;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 11px;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

#status-bar:hover {
    opacity: 1;
}

.status-connected {
    color: #9ece6a;
}

.status-connecting {
    color: #e0af68;
}

.status-disconnected {
    color: #f7768e;
}
