/* Customer-service notification dot (shared) */
@keyframes mj-notify-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(0.82); }
}

.mj-notify-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b30;
    box-shadow: 0 0 6px rgba(255, 59, 48, 0.6);
    display: none;
    animation: mj-notify-blink 1s ease-in-out infinite;
}

.mj-notify-dot.on {
    display: block;
}

/* Visitor chat header online dot */
.dot-online {
    flex-shrink: 0;
}

.dot-online.mj-notify-blink {
    background: #ff3b30;
    box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.35), 0 0 8px rgba(255, 59, 48, 0.55);
    animation: mj-notify-blink 1s ease-in-out infinite;
}

/* Admin tab badge */
.tabs button {
    position: relative;
}

.tab-notify-dot {
    position: absolute;
    top: 5px;
    right: 6px;
}

/* Admin session list badge */
.sess-item {
    position: relative;
}

.sess-unread-dot {
    position: absolute;
    top: 12px;
    right: 12px;
}

/* Homepage floating kefu button */
.kefu-notify-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    z-index: 2;
    pointer-events: none;
}
