#chat-container {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

#chat-messages .message {
    margin-bottom: 15px;
    max-width: 80%;
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
    word-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap;
}

#chat-messages .user {
    background: #065586;
    color: #ffffff;
    align-self: flex-end;
    text-align: left;
    margin-left: auto;
    border-bottom-right-radius: 0;
    max-width: 75%;
}

#chat-messages .bot {
    background: #e0e0e0;
    color: #333;
    align-self: flex-start;
    text-align: left;
    margin-right: auto;
    border-bottom-left-radius: 0;
    max-width: 75%;
}

#chat-input {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 10px;
    background: #ffffff;
}

#chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

#chat-input input:focus {
    border-color: #065586;
    box-shadow: 0 0 5px rgba(6, 85, 134, 0.5);
}

#chat-input button {
    margin-left: 10px;
    padding: 10px 20px;
    background: #065586;
    color: white;
    border: none;
    border-radius: 20px;    
    cursor: pointer;
    font-size: 14px;
}

#chat-input button:hover {
    background: #054b72;
}


@media (max-width: 768px) {
    #chat-messages .message {
        max-width: 90%;
    }
    #chat-input input {
        font-size: 12px;
    }
    #chat-input button {
        font-size: 12px;
    }
}