.chat-container {
    display: flex;
    width: 100%;
    height: 600px;
}

.chat-sidebar {
    width: 25%;
    background-color: #2c3e50;
    color: white;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.thread {
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #34495e;
}

.thread:hover {
    background-color: #34495e;
}

.chat-box-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    width: 75%;
}

.chat-header {
    background-color: #1a247cd4;
    padding: 15px;
    color: white;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.chat-box {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

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

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message p {
    background-color: #e2e6ea;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-message.user p {
    background-color: #1a247cd4;
    color: white;
}

.chat-input-container {
    display: flex;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 0 0 8px 8px;
}

.chat-input {
    flex-grow: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-right: 10px;
}

.send-btn {
    background-color: #1a247cd4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.send-btn:hover {
    background-color: #1a247cd4;
}

textarea {
    resize: none;
    max-height: 200px;
}