/* 
    Created on : 29 de mar. de 2025, 14:29:54
    Author     : junior
*/

 body {
            background-color: #e5ddd5;
            font-family: 'Arial', sans-serif;
        }
        .container {
            margin-top: 50px;
        }
        #chatBox {
            background-color: #fff;
            height: 400px;
            overflow-y: auto;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }
        .message {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.5;
        }
        .user-msg {
            text-align: right;
            background-color: #dcf8c6;
            color: black;
            padding: 10px 15px;
            border-radius: 10px;
            display: inline-block;
            max-width: 70%;
            word-wrap: break-word;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        .bot-msg {
            text-align: left;
            background-color: #25d366;
            color: white;
            padding: 10px 15px;
            border-radius: 10px;
            display: inline-block;
            max-width: 70%;
            word-wrap: break-word;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        .input-group {
            margin-top: 5px;
        }
        .input-group input {
            border-radius: 25px;
            padding: 10px 15px;
            font-size: 16px;
        }
        .input-group button {
            border-radius: 25px;
            padding: 10px 15px;
            background-color: #25d366;
            color: white;
            border: none;
        }
        .avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin-right: 10px !important;
    display: inline-block !important;
    overflow: hidden !important;
}
        #typingIndicator {
            font-style: italic;
            font-size: 14px;
            color: #e0e0e0;
            margin-top: 10px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }
        .typing-dots {
            display: inline-block;
            position: relative;
        }
        .dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin: 0 3px;
            border-radius: 50%;
            background-color: #e0e0e0;
            animation: blink 1.5s infinite;
        }
        .dot:nth-child(1) {
            animation-delay: 0s;
        }
        .dot:nth-child(2) {
            animation-delay: 0.3s;
        }
        .dot:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes blink {
            0% {
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }
        .message-container {
            display: flex;
            align-items: flex-start;
        }
        
        
 .modal {
  display: flex;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
#recaptchaModal{
    display: none;
}