/* Contact Form 7 Smart Autofill - Frontend Styles */

/* Debug Information Display */
.cf7-smart-autofill-debug {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 12px;
    z-index: 9999;
    max-width: 300px;
}

.cf7-smart-autofill-debug h4 {
    margin: 0 0 5px 0;
    color: #46b450;
}

.cf7-smart-autofill-debug ul {
    margin: 0;
    padding-left: 15px;
}

/* Autofilled Field Indication */
.cf7-autofilled {
    background-color: #e8f5e8 !important;
    border-color: #46b450 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Animation for autofilled fields */
@keyframes cf7-autofill-flash {
    0% { background-color: #fff3cd; }
    50% { background-color: #e8f5e8; }
    100% { background-color: #fff; }
}

.cf7-autofilled-animation {
    animation: cf7-autofill-flash 2s ease-in-out;
}