@keyframes dropdownAnimation {
    from {
        opacity: 0;
        filter: blur(3px);
    }
}

.primary-popover {
    word-break: break-word;
    border-width: 1px;
    border-radius: calc(var(--radius) - 2px);
    position: absolute;
    z-index: 2000;
    padding: 0.5rem 1rem;
    width: auto;
    max-width: 480px;
    background: hsl(var(--background));
    box-shadow: var(--shadow-lg);
    animation: dropdownAnimation 0.2s;
}
