@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

body {
    background-color: #1e1e1e;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #d4d4d4;
    font-size: small;
}
a {
    color: #f1fa8c;
    text-decoration: underline;
}
.container {
    width: 90%;
    max-width: 800px;
    background-color: #2e2e2e;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.navbar {
    background-color: #444444;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 16px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.navbar .terminal-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}
.nav-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.nav-button.red { background-color: #ff5f57; }
.nav-button.yellow { background-color: #ffbd2e; }
.nav-button.green { background-color: #28c940; }

.content {
    padding: 24px;
}

.terminal-line {
    line-height: 1.5;
}

.prompt {
    color: #c2c2c2;
}

.user {
    color: #8be9fd;
}

.path {
    color: #50fa7b;
}

.command {
    color: #f1fa8c;
}

.output {
    color: #d4d4d4;
}

.cursor {
    background-color: #d4d4d4;
    width: 8px;
    height: 16px;
    display: inline-block;
    vertical-align: bottom;
    animation: blink 1s infinite;
}

.terminal-input-container {
    display: flex;
    align-items: center;
}

.terminal-input {
    background-color: transparent;
    border: none;
    outline: none;
    color: #d4d4d4;
    flex-grow: 1;
}

@keyframes blink {
    50% { opacity: 0; }
}