/*
 * WhatsApp Lead Widget — Frontend Styles
 * Additional styles beyond the inline critical CSS
 */

/* Placeholder color */
.wlw-input::placeholder {
    color: #b0b0b0;
}

/* Autofill background fix */
.wlw-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

/* Scrollbar inside modal on small screens */
#wlw-modal {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    box-sizing: border-box;
}

/* Textarea specific */
#wlw-mensaje {
    font-family: inherit;
    line-height: 1.5;
}

/* Ensure modal stacks above common page elements */
#wlw-wrap * {
    box-sizing: border-box;
}

/* Close button hover */
#wlw-close:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}
