/* macOS圆点 — 红黄绿窗口按钮装饰 */
.zm-macos-dots {
    display: flex;
    align-items: center;
    margin-top: -5px;
    margin-bottom: 5px;
    height: 22px;
}
.zm-macos-dots .zm-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}
.zm-macos-dots .zm-dot-red    { background-color: #ff5144; }
.zm-macos-dots .zm-dot-yellow { background-color: #bfc930; }
.zm-macos-dots .zm-dot-green  { background-color: #2997f7; }

/* 自动为 enlighter 代码块添加圆点装饰 */
.enlighter-default .enlighter {
    position: relative;
    padding-top: 30px !important;
}
.enlighter-default .enlighter:before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5144;
    box-shadow: 16px 0 #bfc930, 32px 0 #2997f7;
}
/* Enlighter “enlighter” 主题自带三色圆点，隐藏我们的避免重复 */
.enlighter-t-enlighter .enlighter:before {
    display: none;
}
