.bg-login-image {
    background: url('../img/bg-login-image.jpg');
    background-size: cover;
}

.message-wrapper {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.chat-bubble {
    max-width: 60%;
    padding: 12px 16px;
    margin: 10px;
    border-radius: 20px;
    word-wrap: break-word;
    background-color: #f8f9fc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chat-bubble.left {
    background-color: #e9ecef;
    color: #343a40;
    border-radius: 20px 20px 20px 0;
    margin-right: auto;
    text-align: left;
}

.chat-bubble.right {
    background-color: #d1e7dd;
    color: #0f5132;
    border-radius: 20px 20px 0 20px;
    margin-left: auto;
    text-align: left;
}

.chat-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
