.switch-gen-show-nav {
    position: fixed;
    width: 42px;
    left: calc(50% + 30px);
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
    z-index: 1200;
}

body.is-prompt-thread-mode .switch-gen-show-nav {
    display: none;
}

@media (max-width: 768px) {
    .switch-gen-show-nav {
        left: calc(50% + 26px);
    }
}

.switch-gen-show-dot {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.switch-gen-show-dot:focus {
    outline: none;
}

.switch-gen-show-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.55);
    transform: translate(-50%, -50%);
    transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

.switch-gen-show-dot:hover::before {
    background: rgba(99, 102, 241, 0.75);
}

.switch-gen-show-dot.is-active::before {
    background: linear-gradient(135deg, #17a2b8, #9b42f5);
}
