.stack {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stack .bookmarklet {
    width: 100%;
    box-sizing: border-box;
}

.bookmarklet-list {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.75rem 1.25rem;
    align-items: center;
}

.bookmarklet-list > p {
    margin: 0;
/*            line-height: 1.4;*/
}

.bookmarklet {
    display: inline-block;
    padding: 0.6rem 1rem;

    font: 600 14px system-ui, sans-serif;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;

    color: white;
    background: linear-gradient(#4b7bec, #3867d6);
    border: 1px solid #2d5fc9;
    border-radius: 6px;

    cursor: grab;
    user-select: none;
}

.bookmarklet:hover {
    background: linear-gradient(#5a88ef, #4777df);
}

.bookmarklet.internal {
    background: linear-gradient(#eb4d4b, #c23616);
    border-color: #a83210;
}

.bookmarklet.internal:hover {
    background: linear-gradient(#ff6b6b, #e55039);
}

.bookmarklet:active {
    cursor: grabbing;
}
