.tooltip {
    position: relative;
    display: inline-block;
}
  
.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: rgb(230, 230, 230);
    color: #181818;
    border-radius: 3px;
    padding: 5px;
    font-family: DM Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    right: 100%;
    white-space: normal;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.link-text{
    cursor: pointer;
    text-decoration: underline;
    color: aqua;
}

.interactable{
    cursor: pointer;
}

.shelf-list-actions{
    width: 1px;
    white-space: nowrap;
}

.modal-popup {
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-popup.open {
    opacity: 1;
    z-index: 999;
}

.modal-inner-popup {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    text-align: center;
    width: 380px;
}

.modal-inner-popup h2 {
    margin: 0;
}

.modal-inner-popup p {
    line-height: 24px;
    margin: 10px 0;
}

.modal-popup-button {
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid;
    border-color:rgb(160, 160, 160);
}