.chat-container {
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    height: 55vh;
    width: 30vw;
    color: white;
    background: rgba(19, 19, 19, 0.7);
    color: rgb(12, 153, 12);
    font-family:'Courier New', Courier, monospace;
}

.chat-input {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(19, 19, 19, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 30vw;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.4);
    color: rgb(12, 153, 12);
    font-family: 'Courier New', Courier, monospace;
}

.chat-input button {
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    color: rgb(12, 153, 12);
    font-family: 'Courier New', Courier, monospace;
    transition: background 0.2s;
}

.chat-input button:hover {
    background: rgba(0, 0, 0, 0.8);
}
