/* Import the desired font */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

/* Basic page reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #1e1e1e; /* Dark background */
    overflow: hidden; /* Hide scrollbars */
}

/* Style the terminal container */
#terminal {
    width: 100vw;
    height: 100vh;
    padding: 10px;
    box-sizing: border-box; /* Include padding in height/width */
}

/* xterm.js overrides */
.xterm .xterm-viewport {
    /* Hide the xterm scrollbar, we'll auto-scroll */
    overflow-y: hidden !important; 
}