/* Team E-Z Auto Chatbot - Additional Styles */
/* This file provides backup styling and customization options */

.teamez-chatbot-widget * {
    box-sizing: border-box;
}

/* Enhanced animations */
.teamez-chatbot-widget {
    animation: teamez-slideIn 0.3s ease-out;
}

@keyframes teamez-slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.teamez-chatbot-button {
    animation: teamez-pulse 2s infinite;
}

@keyframes teamez-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Print styles - hide chatbot when printing */
@media print {
    .teamez-chatbot-button,
    .teamez-chatbot-widget {
        display: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .teamez-chatbot-widget {
        border: 2px solid #000;
    }
    
    .teamez-chatbot-input {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .teamez-chatbot-button,
    .teamez-chatbot-widget {
        animation: none;
        transition: none;
    }
}