        /* Estilos específicos para la herramienta de prueba */
        .chatbot-container { max-width: 960px; margin: 0 auto; padding: 20px; }
        .respuesta { 
            background: #1F1F1F; 
            color: #CAE9ED;
            border: 2px dashed var(--dvgo-color-principal); 
            padding: 2rem; 
            margin-top: 20px; 
            border-radius: 2rem; 
            min-height: 40px; 
            font-family: Kodemono-medium;
        }
        /* Estilo para el nuevo enlace del chatbot */
        .respuesta a {
            color: var(--dvgo-color-footer-texto);
            text-decoration: 1px underline dashed !important;
        }
        .respuesta a:hover {
            color: var(--dvgo-color-secundario); /* Color de hover que contraste */
        }

        .respuesta strong { margin-right: 5px; }
        .errorp { color: #ff0000; }
        .pregunta-wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 1rem;
        }
        .terminal-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #CAE9ED;
            font-size: 1.2rem;
            animation: dvgo-terminal-blink 1s steps(1, end) infinite;
            pointer-events: none;
        }
        @keyframes dvgo-terminal-blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }
        input.pregunta { 
            font-family: Kodemono-medium;
            font-size: 2rem;
            padding: 1rem 3.25rem 1rem 3rem;
            width: 100%;
            color: #CAE9ED;
            background-color: #1F1F1F;
            border: 2px dashed var(--dvgo-color-principal); 
            border-radius: 2rem;
            box-shadow: rgba(0, 0, 0, .6) 0 2px 10px;
            caret-color: #CAE9ED;
        }
        .pregunta-submit {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 2.5rem;
            height: 2.5rem;
            border: 1px solid #1d1d1d;
            border-radius: 0.75rem;
            background-color: #0b0b0b;
            color: #CAE9ED;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: rgba(0, 0, 0, .6) 0 2px 10px;
            font-family: Kodemono-medium;
            font-size: 2rem;
            line-height: 1;
        }
        .pregunta-submit i {
            font-size: 2rem;
            line-height: 1;
        }
        .pregunta-submit:hover {
            background-color: #111111;
            border-color: #2a2a2a;
        }
        .pregunta-submit:active {
            transform: translateY(-50%) scale(0.98);
        }
        input.pregunta::placeholder {
            color: #5b6b5b;
        }
        .button-secondary { padding: 8px 15px; cursor: pointer; background: #f0f0f0; color: #333; border: 1px solid #ccc; border-radius: 5px; margin-right: 5px; }
        table { border-collapse: collapse; width: 100%; margin-top: 15px; font-size: 0.85em; }
        th, td { border: 1px solid #ddd; padding: 8px; text-align: left; vertical-align: top;}
        th { background-color: #f2f2f2; }
        .highlight-detected { background-color: #d1ffc2; font-weight: bold; } 
        .debug-box { 
            background: #fff8e1; 
            border: 1px solid #ffecb3; 
            padding: 10px; 
            margin-top: 10px; 
            border-radius: 5px; 
            font-family: monospace; 
            font-size: 0.8em; 
            white-space: pre-wrap;
            word-wrap: break-word;
            display: none; /* Oculto por defecto */
        }
        .sql-error {
            background: #ffcccc;
            border: 1px solid #cc0000;
            padding: 10px;
            margin-top: 10px;
            border-radius: 5px;
            font-weight: bold;
        }
        
        @media screen and (min-width: 970px) {
            .robotito {
                font-size: 2rem;
                margin: 0rem 1rem;
            }
        }

        @media screen and (max-width: 969px) {
            .robotito {
                display: block;
                font-size: 4rem;
                margin: 1rem;
                text-align: center;
                
            }
        }

        /* Ejemplo CSS */
.chatbot-examples {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}
.chatbot-telegram-box {
    margin-top: 30px;
    padding: 20px;
    border: 2px solid #2aabee;
    border-radius: 14px;
    background: linear-gradient(135deg, #e7f6ff 0%, #f6fbff 100%);
    box-shadow: 0 8px 20px rgba(42, 171, 238, 0.15);
}
.chatbot-telegram-box h3 {
    margin-top: 0;
    color: #1782c5;
}
.chatbot-telegram-box p {
    color: #0f2b3a;
}
.telegram-cta {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #2aabee;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(42, 171, 238, 0.35);
}
.telegram-cta:hover {
    background: #1f9adf;
    color: #ffffff;
    opacity: 0.95;
}
.example-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}
.example-list li {
    display: inline-block;
    margin: 5px;
}
.example-list code {
    color: var(--dvgo-color-principal);
    background-color: var(--dvgo-gris-fondo-claro);
    border: 1px dashed var(--dvgo-color-principal);
    padding: 5px 10px;
    border-radius: 1rem;
    font-size: 0.8rem;
    cursor: copy; /* Sugiere que se puede copiar */
    display: block; /* Para que ocupen su propio espacio */
}

        /* Estilos para listas en las respuestas del chatbot */
        .chatbot-list {
            margin: 10px 0;
            padding-left: 20px;
            list-style-type: disc;
            max-height: 400px;
            overflow-y: auto;
            overflow-x: hidden;
            /* Estilo de scrollbar - Firefox */
            scrollbar-color: #CAE9ED #1F1F1F;
            scrollbar-width: thin;
        }
        
        /* Estilo de scrollbar - Webkit (Chrome, Edge, Safari) */
        .chatbot-list::-webkit-scrollbar {
            width: 1rem;
        }
        
        .chatbot-list::-webkit-scrollbar-track {
            background: #1F1F1F;
            border-radius: 4px;
        }
        
        .chatbot-list::-webkit-scrollbar-thumb {
            background: #CAE9ED;
            border-radius: 4px;
        }
        
        .chatbot-list::-webkit-scrollbar-thumb:hover {
            background: #A8D7DB;
        }
        
        .chatbot-list li {
            margin: 5px 0;
            line-height: 1.6;
        }
        
        /* Asegurar que los enlaces dentro de las listas se vean bien */
        .chatbot-list a {
            text-decoration: underline;
        }
        
        .chatbot-list a:hover {
            opacity: 0.8;
        }
        
        /* Estilos para iconos en enlaces de secciones */
        .dvgo-link-chatbot i {
            margin-right: 5px;
            opacity: 0.8;
        }