@charset "UTF-8";
/* CSS Document */

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.pulsing {
    animation: pulse 0.6s ease-in-out;
}

.wrapper {
    position: relative;
    height: 100vh;
    overflow: auto;
    /* Enable scrolling */
    z-index: 1;
    /* Ensure the wrapper stays on top */
}