@keyframes popup {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-popup {
    animation: popup 0.3s ease-out forwards;
}

.package.selected {
    border-color: #FE2C55;
    background-color: rgba(254, 44, 85, 0.05);
}

body {
    -webkit-tap-highlight-color: transparent;
}

/* Custom scrollbar for WebKit browsers */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}