#convotrack-help-button { 
	position: fixed; 
	bottom: 25px; 
	right: 25px; 
	background: #2e7d32; 
	color: #fff; 
	padding: 14px 18px; 
	border-radius: 30px; 
	cursor: pointer; 
	font-weight: bold; 
	z-index: 9999; 
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#convotrack-help-button.shake {
    animation: shake 0.8s;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

#convotrack-help-modal {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    z-index: 10000;
}

.convotrack-help-content {
    padding: 15px;
}

.convotrack-help-content input[type="tel"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

.convotrack-help-content button {
    width: 100%;
    background: #2e7d32;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.consent {
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}