.popover {
    min-height: 48px;
    width: 250px;
    height: auto;
    position: absolute; 
    top: 0; 
    left: 0;
    border-radius: 24px;
    border-radius: min(24px, 50%);
    border: 1px solid rgb(50, 50, 50);
    background-color: rgb(34, 34, 34);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 98;
    box-sizing: border-box;
}

.popover-hidden {
    visibility: hidden;
    opacity: 0;
}

.popover > :first-child {
    margin-top: 0;
}

.popover > :last-child {
    margin-bottom: 0;
}