* {
    background-color: black;
    color: #0f0;
    font-family: "Roboto", sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.result {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column-reverse; /* Это заставляет новые элементы появляться снизу */
    padding: 1px;
    gap: 5px;
}

.message {
    padding: 1px 1px;
    margin: 1px 0;
}

.input_container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-top: 1px solid #0f0;
}

.input {
    width: 100%;
    border: #000;
    padding: 10px;
    color: #0f0;
}

.input:focus {
    outline: none;
}
