/* styles.css */
/* Version: 1.1.0 */

body {
    background-color: black;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    margin: 0;
    padding: 20px;
    overflow: hidden;
}

.terminal {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.share-link {
    margin-top: 10px;
    color: #00ff00;
    text-align: center;
}

.share-link a {
    color: #00ff00;
    text-decoration: underline;

}

.logo {
    white-space: pre;
    font-size: 20px;
    margin-bottom: 20px;
}

.text {
    width: auto;
    border: 1px solid #00ff00;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    color: #00ff00; 
    max-height: 400px;
    overflow-y: auto;
    flex-grow: 1;
}

.input-wrapper {
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.prompt-symbol {
    color: #00ff00;
    margin-right: 5px;
}

.input-wrapper input {
    background-color: black;
    color: #00ff00;
    border: none;
    width: 80%;
    font-size: 16px;
    outline: none;
    caret-color: #00ff00;
    text-align: left;
}

.input-wrapper input::placeholder {
    color: #00ff00;
}

