.chat {
    position: fixed;
    bottom: 70%;
    left: 10px;
    width: 400px;
    max-height: 250px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 4px 6px;
    display: flex;
    flex-direction: column;
    font-family: Minecraftia;
    font-size: 14px;
    color: rgb(255, 255, 255);
    z-index: 1000;
    border: none;
}

.message-container {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    margin-bottom: 4px;
}

.chat-input {
    width: 100%;
    box-sizing: border-box;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    color: rgb(255, 255, 255);
    font-family: Minecraftia;
    font-size: 14px;
    padding: 2px 4px;
    outline: none;
    border-radius: 2px;
}

.chat-message {
    background: none;
    color: rgb(255, 255, 255);
    margin-top: 2px;
}