/* Consent Checkbox Shake Animation */
@keyframes consentShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.consent-error {
    animation: consentShake 0.5s ease-in-out;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff5f5;
    border: 1px solid #dc3545;
}

.consent-error label {
    color: #dc3545 !important;
    font-weight: 500;
}
