.chat-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    color: white;
}

.chat-box {
    width: 90%;
    height: 70vh;
    background-color: #2e2e2e;
    padding: 10px;
    border-radius: 10px;
    overflow-y: scroll;
    margin-bottom: 10px;
}

.message {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.message.user {
    align-items: flex-end;
}

.message .text {
    background-color: #3e3e3e;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
}

.message.user .text {
    background-color: #007bff;
    color: white;
}

.input-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.record-btn {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
}

.record-btn:active {
    background-color: #0056b3;
}
