#chat-container {
    display: flex;
    height: 90vh;
    font-family: Arial, sans-serif;
}

#conversations-panel {
    width: 25%;
    border-right: 1px solid #ccc;
    overflow-y: auto;
    padding: 10px;
}

#conversations-panel div {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

#conversations-panel div.active {
    background-color: #f0f0f0;
    font-weight: bold;
}

#messages-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

#messages {
    flex: 1;
    overflow-y: auto;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.message {
    margin: 5px 0;
    padding: 6px 10px;
    border-radius: 8px;
    max-width: 80%;
}

.message.user {
    background-color: #cce5ff;
    align-self: flex-end;
}

.message.bot {
    background-color: #e2e2e2;
    align-self: flex-start;
}

#input-panel {
    display: flex;
    margin-top: 10px;
}

#input-panel input {
    flex: 1;
    padding: 8px;
    font-size: 14px;
}

#input-panel button {
    padding: 8px 12px;
    margin-left: 5px;
    cursor: pointer;
}
