/* Styles pour l'effet de pulse utilisé dans l'onboarding */
.onboarding-target-pulse {
    position: relative;
    z-index: 100;
}

.onboarding-target-pulse::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: inherit;
    border: 2px solid #133B54;
    z-index: -1;
    animation: pulse-border 1.5s infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}