body {
    margin: 0;
    padding: 0;
    font-family: 'Cascadia Code', 'Consolas', monospace;
    background-color: #0c0c0c;
    color: #f0f0f0;
    height: 100vh;
    overflow: hidden;
}

.terminal {
    height: 100vh;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.terminal-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.welcome-message {
    color: #cccccc;
    margin-bottom: 10px;
    white-space: pre-wrap;
    line-height: 1.5;
}

.command-line {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.prompt {
    margin-right: 0px;
    color: #4caf50;
}

.command-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #f0f0f0;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    caret-color: #f0f0f0;
}

.command-output {
    margin-bottom: 10px;
    white-space: pre-wrap;
    line-height: 1.5;
}

.terminal-content::-webkit-scrollbar {
    width: 10px;
}

.terminal-content::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.terminal-content::-webkit-scrollbar-thumb {
    background: #3c3c3c;
    border-radius: 5px;
}

.terminal-content::-webkit-scrollbar-thumb:hover {
    background: #4c4c4c;
}