body {
    background-color: #0c0c0c;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

a {
    color: #00ff00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.terminal-container {
    width: 80%;
    max-width: 800px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: #1e1e1e;
    border: 2px solid #4d4d4d;
    padding: 0;
}

.title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #ccc;
    padding: 5px 10px;
    border-bottom: 2px solid #4d4d4d;
    font-size: 14px;
}

.title-buttons {
    display: flex;
    gap: 5px;
}

.title-buttons span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.close {
    background-color: #ff605c;
}

.minimize {
    background-color: #ffbd44;
}

.maximize {
    background-color: #00ca4e;
}

.terminal {
    width: 100%;
    padding: 20px;
}

.terminal-output {
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 10px;
    font-size: 16px;
}

.terminal-input {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.terminal-input span {
    margin-right: 10px;
}

#command-input {
    background-color: transparent;
    border: none;
    color: #00ff00;
    font-size: 16px;
    width: 100%;
    caret-color: #00ff00;
}

#command-input:focus {
    outline: none;
}

@keyframes blink {
    0% { border-right-color: #00ff00; }
    50% { border-right-color: transparent; }
    100% { border-right-color: #00ff00; }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #4d4d4d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #6b6b6b;
}
