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

.terminal {
    background-color: #111;
    width: 90%;
    max-width: 800px;
    height: 500px;
    border: 2px solid #00FF00;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #00FF00;
    padding-bottom: 5px;
}

.header-title {
    font-size: 16px;
}

.upload-button {
    background-color: #00FF00;
    color: #111;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.upload-button:hover {
    background-color: #00AA00;
    transition: background-color 0.3s ease;
}

.output {
    flex-grow: 1;
    overflow-y: auto;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}

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

.prompt {
    margin-right: 5px;
}

.cmd-input {
    background-color: transparent;
    color: #00FF00;
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    animation: inputFocus 0.5s ease-in-out forwards;
}

.cmd-input::placeholder {
    color: #00FF00;
    opacity: 0.5;
}

.run-button {
    background-color: #00FF00;
    color: #111;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.run-button:hover {
    background-color: #00AA00;
    transform: scale(1.1);
}

@keyframes inputFocus {
    from {
        border-bottom: 1px solid transparent;
    }
    to {
        border-bottom: 1px solid #00FF00;
    }
}

@media only screen and (max-width: 600px) {
    .terminal {
        height: 70%;
    }
}
