body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

h5 {
    margin-bottom: 0px;
}

.chat-container {
    width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 95vh;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background-color: rgba(136, 136, 136, 0.05);
}

.chat-header span {
    font-size: 18px;
    font-weight: bold;
}


.bot-info {
    display: flex;
    align-items: center;
}

.bot-info h5 {
    margin-left: 10px;
    margin-bottom: 0;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-info h5 {
    margin-right: 10px;
    margin-bottom: 0;
}

.user-info .btn-accept {
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.menu-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

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

.user-message .message-content {
    background-color: rgba(136, 136, 136, 0.05);
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}


.bot-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border: 2px solid #ddd; /* Add a slight grey border */
}

.bot-avatar img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.bot-message .message-content {
    background-color: aliceblue;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}

.chat-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: rgba(136, 136, 136, 0.05);
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px;
    outline: none;
    margin-right: 10px;
}
