/* GreenView Chatbot Styles */
#gvchat-container {
    position: relative;
    z-index: 10000;
}

/* Animaciones */
#gvchat-window {
    animation: gvchatSlideIn 0.3s ease-out;
}

@keyframes gvchatSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Estados de carga */
.gvchat-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mejoras de accesibilidad */
.gvchat-input:focus {
    background-color: #fffde7;
}

.gvchat-quick-btn:focus,
.gvchat-send:focus {
    outline: 2px solid #6d174d;
    outline-offset: 2px;
}