#zjdm-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 50px;
    cursor: pointer;
    z-index: 999999;
}

#zjdm-toggle::before {
    content: "☀️";
    position: absolute;
    width: 26px;
    height: 26px;
    background: white;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    transition: 0.3s;
}

body.dark-mode #zjdm-toggle {
    background: #333;
}

body.dark-mode #zjdm-toggle::before {
    transform: translateX(30px);
    content: "🌙";
}