.linkwheel-widget { position: relative; display: inline-flex; vertical-align: top; font-family: inherit; }
.linkwheel-toggle {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px;
    background: #555555; box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    opacity: 0.3; cursor: default;; transition: all .2s ease;
}
.linkwheel-toggle:hover { transform: scale(1.1); opacity: 1; background: #555555; }
.linkwheel-toggle:focus { outline: none; }
.linkwheel-panel {
    position: absolute; bottom: calc(100% + 10px); left: 0; z-index: 9999;
    min-width: 220px; max-width: min(88vw, 260px); padding: 10px;
    border: 1px solid #e5e7eb; border-radius: 14px; background: #fff;
    box-shadow: 0 12px 28px rgba(15,23,42,.12);
    opacity: 0; visibility: hidden; transform: translateY(8px) scale(.98);
    pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.linkwheel-widget.is-open .linkwheel-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }
.linkwheel-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.linkwheel-panel-title { margin: 0; font-size: 13px; font-weight: 700; color: #111827; }
.linkwheel-panel-desc { margin: 2px 0 0; font-size: 11px; color: #6b7280; }
.linkwheel-close { width: 24px; height: 24px; border: 0; border-radius: 999px; background: #f3f4f6; cursor: default; text-align: center; line-height: 24px; }
.linkwheel-list ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.linkwheel-list li { margin-bottom: 6px; }
.linkwheel-option {
    display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 10px;
    border: 1px solid #dcdfe4; border-radius: 8px; background: #fff;
    text-decoration: none !important; color: #111827 !important; font-size: 12px; font-weight: 600;
    transition: all .18s ease;
}
.linkwheel-option:hover { border-color: #c7ced6; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(15,23,42,.05); }
.linkwheel-option-arrow { width: 18px; height: 18px; border-radius: 999px; background: #0f172a; color: #fff; font-size: 9px; text-align: center; line-height: 18px; flex-shrink: 0; }
.linkwheel-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }