#youtube-transcript-chat {
margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

#chat-container {
    margin-top: 20px;
}

#chat-messages {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.message {
    margin-bottom: 30px;
    display: flex;
}

.user-message {
    justify-content: flex-end;
}

.assistant-message {
    justify-content: flex-start;
}

.message-bubble {
    padding: 10px;
    border-radius: 10px;
    width: 100%;
}

.user-message2 .message-bubble {
    background-color: #0084ff;
    color: white;
}

.assistant-message .message-bubble {
    background-color: #e5e5ea;
    color: black;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-message .message-avatar {
    order: 1;
    margin-right: 0;
    margin-left: 10px;
}

#user-input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#send-button {
  /*  margin-top: 10px;
    padding: 10px 20px;
    background-color: #0084ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer; */
}