/* ==========================================================
   C:\wamp64\www\sida2\css\bookmarklet.css
   ========================================================== */
   :root {
    --bookmark-bg: #f7c948;
    --bookmark-bg-hover: #f5b700;
    --bookmark-text: #1f2937;
    --bookmark-shadow: 0 12px 25px rgba(0, 0, 0, .12);
    --bookmark-shadow-hover: 0 20px 40px rgba(0, 0, 0, .18);
    --bookmark-radius: 999px;
    --bookmark-transition: .25s ease;
}

.bookmarklet-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.bookmarklet-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: var(--bookmark-radius);
    background: linear-gradient(180deg, #ffe07d 0%, var(--bookmark-bg) 100%);
    color: var(--bookmark-text);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    user-select: none;
    cursor: grab;
    white-space: nowrap;
    transition: transform var(--bookmark-transition), box-shadow var(--bookmark-transition), background var(--bookmark-transition);
    box-shadow: var(--bookmark-shadow);
    border: 1px solid rgba(255, 255, 255, .4);
    overflow: hidden;
}

.bookmarklet-chip:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--bookmark-shadow-hover);
}

.bookmarklet-chip:active {
    cursor: grabbing;
    transform: scale(.96);
}

.bookmarklet-chip .drag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.bookmarklet-chip:hover .drag-icon {
    transform: rotate(-12deg) scale(1.12);
}

@media (max-width: 768px) {
    .bookmarklet-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .bookmarklet-chip {
        width: 100%;
        justify-content: center;
    }
}