html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Source Code Pro', monospace;
    background-color: #808080;
    color: #fff;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

pre {
    font-family: 'Source Code Pro', monospace;
    color: #4DCA27;
    white-space: pre-wrap;
    margin: 0;
    padding: 10px 0;
    text-align: center;
}

.terminal {
    width: 90%;
    height: 90%;
    background-color: #1e1e1e;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
}

.header {
    background-color: #444;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.path {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.content {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
    background-color: #000;
}

.input-box {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.prompt {
    color: #ca274d;
    margin-right: 8px;
}

#command-input {
    flex: 1;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    font-family: 'Source Code Pro', monospace;
    outline: none;
    caret-color: #0df;
}
