/* Custom styles */
.text-balance {
    text-wrap: balance;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(21, 128, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(21, 128, 61, 0); }
}

.animate-pulse-ring {
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

#popup.active {
    display: flex;
}
