* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
}

body {
    background-color: #000;
    color: #d8d8d8;
    height: 100vh;
    overflow: hidden;
}

#terminal {
    width: 100%;
    height: 100%;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#output {
    flex: 1;
}

#output div {
    white-space: pre;
    line-height: 1.2;
}

#input-line {
    display: flex;
    width: 100%;
    height: 20px;
    margin-top: 4px;
    white-space: nowrap;
}

#prompt {
    color: #ababab;
    user-select: none;
    white-space: nowrap;
}

#user-input {
    background: transparent;
    border: none;
    color: #d8d8d8;
    width: 100%;
    outline: none;
    padding-left: 5px;
    font-size: inherit;
    height: 20px;
}

.loading-bar {
    margin: 5px 0;
    height: 20px;
    position: relative;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background: #4CAF50;
    width: 0%;
    transition: width 0.3s;
}

.loading-bar-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 20px;
    color: #fff;
}