#terminal {
    display:flex;
    flex-direction: column;
    height:480px;
    top: 20px;
    left: 33%;
    overflow:auto;
    position:absolute;
}

#terminal-buffer {
    padding:5px;
    text-align: left;
    overflow-y:scroll;
    overflow-x:hidden;
    box-sizing: border-box;
    font-family: monospace;
    white-space:pre;
    top:42px;
    left:4px;
    right:0;
    bottom:16px;
    position:absolute;
}

#terminal-buffer p {
    margin:0;
    padding:0;
    box-sizing: border-box;
    word-wrap: break-word; /* Ensures long words break and wrap */
    overflow-wrap: break-word; /* Ensures long words break and wrap */
}

#terminal-input-container {
    display:flex;
    width: 100%; /* Stretch the text input field to the width of the container */
    padding: 0px;
    box-sizing: border-box;
    font-family: monospace;
    white-space: collapse;
}

#terminal-input {
    width: 100%; /* Stretch the text input field to the width of the container */
    padding: 0px;
    box-sizing: border-box;
    font-family: monospace;
    border: none;
    outline: none;
    background-color: transparent;
    color: #fff;
    /*border-bottom: 1px solid #ccc; !* Add a bottom border for separation *!*/
}

.ps-table {
    width: 275px;
}
.term-dir-color {
    color: dodgerblue;
}

.term-exec-color {
    color: chartreuse;
}

.ls-table, .ls-table tr {
    margin:0;
    padding:0;
}

.ls-table td {
    margin:0;
    padding: 0px 20px 0px 0px;
}

.ls-list-table, .ls-list-table tr {
    margin:0;
    padding:0;
}

.ls-list-table td {
    margin:0;
    padding: 0px 10px 0px 0px;
}
