.chat-container {
            display: none; /* Oculto por defecto */
            flex-direction: column;
            height: 400px; /* Altura fija */
            width: 400px; /* Ancho fijo */
            position: fixed;
            bottom: 50px; /* Espacio para el botón */
            right: 10px;
            margin: 10  10 30  10;
            border: 1px solid #ccc;
            border-radius: 10px;
            overflow: hidden;
            background-color: white;
            font-size: 12px;
			  z-index: 1000;
        }

        .chat-header {
            background-color: #007bff;
            color: white;
            padding: 5px;
            text-align: center;
            font-size: 16px; /* Reducir el tamaño de la fuente */
        }

        .chat-box {
            flex: 1;
            padding: 10px;
            overflow-y: auto;
            border-top: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
            font-size: 12px; /* Reducir el tamaño de la fuente */
        }
	  
		.chat-box p {
		   line-height: 1.7;
		   color:#000;
		}
		
		.chat-box li {
		   line-height: 1.7;
		}
		
		.chat-box h5 {
		   font-size: 16px;
		}
		
		.chat-box h6 {
		   font-size: 14px;
		}



        .chat-input {
            display: flex;
            padding: 10px;
            border-top: 1px solid #ccc;
        }

        .chat-input input {
            flex: 1;
            padding: 5px; /* Reducir el padding */
            border: 1px solid #ccc;
            border-radius: 5px;
            margin-right: 10px;
            font-size: 12px; /* Reducir el tamaño de la fuente */
        }

        .chat-input button {
            padding: 5px 10px; /* Reducir el padding */
            border: none;
            background-color: #007bff;
            color: white;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px; /* Reducir el tamaño de la fuente */
        }

        .chat-input button:hover {
            background-color: #0056b3;
        }

        .message {
            margin-bottom: 10px;
            padding: 10px;
            border-radius: 5px;
            font-size: 12px; /* Reducir el tamaño de la fuente */
        }

        .user-message {
            background-color: #007bff;
            color: white;
            align-self: flex-end;
            padding: 5px 10px; /* Reducir el padding */
            max-width: 70%; /* Ajustar el ancho máximo */
            border-radius: 5px;
            word-wrap: break-word; /* Permitir el ajuste de palabras */
            font-size: 12px; /* Reducir el tamaño de la fuente */
        }

        .bot-message {
            background-color: #f1f1f1;
            color: #333;
            align-self: flex-start;
            font-size: 12px; /* Reducir el tamaño de la fuente */
        }

        .toggle-chat-btn {
            position: fixed;
            bottom: 10px;
            right: 10px;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px; /* Reducir el tamaño de la fuente */
			  z-index: 1001;
        }

        .toggle-chat-btn:hover {
            background-color: #0056b3;
        }
	  
	 .btn-outline-primary {
		  border: 1px solid #007bff !important;
		  color: #007bff !important;
		  background-color: white !important;
		  padding: 8px 15px !important;
		  border-radius: 5px !important;
		  display: inline-block;
		  width: auto;
		  margin: 3px; /* Agrega espacio alrededor de los botones */
		}

.close-chat-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.close-chat-btn:hover {
    /*color: #ff0000;  Rojo al pasar el cursor */
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}

.chat-header button:hover {
    color: #ffcc00; /* Amarillo al pasar el cursor */
}

.h6 {
            color:#007bff;
        }
