.pricing-name-custom {
    width: fit-content;
    margin-bottom: 1rem;
}

th.sort{
    cursor: pointer;
}
.sort-asc::after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 20 20'><path d='M10 4l-5 6h10l-5-6z'/></svg>");
    margin-left: 4px;
    width: 1.5rem;
    position: absolute;
    margin-top: 0.2rem;
}

.sort-desc::after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 20 20'><path d='M10 16l5-6H5l5 6z'/></svg>");
    margin-left: 4px;
    width: 1.5rem;
    position: absolute;
    margin-top: -0.2rem;
}
#create_biolink_link textarea, #update_biolink_form textarea{
    border-color: rgb(0, 0, 0) !important;
    background: transparent;
    border-width: medium;
    border-style: none;
    border-image: none;
    outline: 0px;
    box-shadow: none;
    appearance: textfield;
    resize: none;
    height: 1.6em;
    margin-top: 5px;
    position: relative;
    margin-left: 5px;
}
.confirm-popup{
    position: absolute;
    top: 50vh;
    transform: translateY(-50%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: calc(100vw - 2rem);
}
.confirm-popup .confirm-popup-header{
    font-size: 2rem;
    margin-bottom: 1rem;
}
.confirm-popup .btn-group{
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.confirm-popup .btn-confirm {
    background: grey;
    padding: 1rem;
    border-radius: 2rem;
    color: #fff;
    font-weight: bold;
    text-decoration: unset;
}
.confirm-popup .btn-confirm:hover{
    opacity: 0.8;
}
.confirm-popup .btn-enter{
    background: linear-gradient(135.63deg,#5c5ef6 7.18%,#1800bc 91.88%);
    color: #fff;
}