.wpt-switcher {
font-size: 14px;
line-height: 1.4;
position: relative;
display: inline-block;
z-index: 99999;
}
.wpt-switcher-current {
display: inline-flex;
align-items: center;
gap: 6px;
cursor: pointer;
padding: 8px 12px;
background: #fff;
color: #222;
border: 1px solid #d0d0d0;
border-radius: 6px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
user-select: none;
}
.wpt-switcher-arrow {
font-size: 10px;
opacity: 0.6;
}
.wpt-switcher-list {
display: none;
position: absolute;
margin: 4px 0 0;
padding: 4px 0;
list-style: none;
background: #fff;
border: 1px solid #d0d0d0;
border-radius: 6px;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
min-width: 100%;
white-space: nowrap;
}
.wpt-switcher:hover .wpt-switcher-list,
.wpt-switcher:focus-within .wpt-switcher-list {
display: block;
}
.wpt-switcher-list li {
margin: 0;
padding: 0;
}
.wpt-switcher-list a {
display: flex;
align-items: center;
gap: 6px;
padding: 7px 14px;
color: #222;
text-decoration: none;
}
.wpt-switcher-list a:hover {
background: #f2f2f2;
}
.wpt-switcher-list li.wpt-active a {
font-weight: 600;
opacity: 0.65;
pointer-events: none;
} .wpt-switcher-floating {
position: fixed;
}
.wpt-position-bottom-right { right: 20px; bottom: 20px; }
.wpt-position-bottom-left  { left: 20px;  bottom: 20px; }
.wpt-position-top-right    { right: 20px; top: 20px; }
.wpt-position-top-left     { left: 20px;  top: 20px; } .wpt-position-bottom-right .wpt-switcher-list,
.wpt-position-bottom-left .wpt-switcher-list {
bottom: 100%;
margin: 0 0 4px;
}
.wpt-position-bottom-right .wpt-switcher-list,
.wpt-position-top-right .wpt-switcher-list {
right: 0;
}