/* Estilos básicos para el cuerpo */
body body {
            font-family: sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f0f2f5;
            min-height: 50vh;
            position: relative;
        }

        .chat-container {
            position: fixed;
            bottom: 100px;
            left: 20px;
            width: 350px;
            height: 500px;
/*color parte de abajo*/           
		   background-color: #EA8430;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            z-index: 1000;
            transition: transform 0.3s ease-in-out;
            transform: translateY(120%);
        }

        .chat-container.open {
            transform: translateY(0);
        }

        .chat-header {
            /*color superior*/
			background-color: #0066CC;
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header .title-group {
            display: flex;
            align-items: center;
        }

        .chat-header .title-group img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
            background-color: #fff;
        }
        
        .chat-close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }

        .chat-body {
            flex-grow: 1;
            padding: 10px;
            overflow-y: auto;
            /*fondo completo*/
			background-color: #f9f9f9;
        }
        
        .message-container {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-end;
        }

        .message.bot {
            justify-content: flex-start;
        }

        .message.user {
            justify-content: flex-end;
        }

        .message .bubble {
            padding: 10px 15px;
            border-radius: 20px;
            max-width: 70%;
            word-wrap: break-word;
        }

        .message.bot .bubble {
            background-color: #EA8430;
            color: #EA8430;
            border-bottom-left-radius: 5px;
        }

        .message.user .bubble {
            background-color: #EA8430;
            color: white;
            border-bottom-right-radius: 5px;
        }

        .options-container {
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .option-button {
            /*color de fondo de los botones*/
			background-color: #FFDAB9;
          /*letra*/
		  color:#000000;
/*borde de los botones*/           
		   border: 1px solid #0066CC;
            padding: 10px;
            border-radius: 20px;
            cursor: pointer;
            text-align: center;
            font-size: 0.9em;
            transition: background-color 0.2s;
        }

        .option-button:hover {
            background-color: #1B73DE;
        }
        
        .chat-input {
            display: flex;
            padding: 10px;
            border-top: 1px solid #ddd;
            align-items: center;
        }

        .chat-input input {
            flex-grow: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 20px;
            margin-right: 10px;
            outline: none;
        }

        .chat-input button {
            background-color: #fff;
            color: #EA8430;
            border: none;
            padding: 10px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            font-size: 1.2em;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .robot {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 100px;
            height: 100px;
            background-color: transparent;
            color: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1001;
        }
		.robot img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
