/* mascot-notification-queue.css — Queue depth indicator + notification type styles */

/* Queue depth indicator (dot counter beside mascot) */
.mascot-queue-indicator {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: var(--mascot-accent, #e74c3c);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    padding: 0 4px;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 10;
}

.mascot-queue-indicator--active {
    opacity: 1;
    transform: scale(1);
}

/* Notification type accents on speech bubble */
.mascot-speech-bubble[data-type="welcome"] {
    border-left: 3px solid var(--mascot-color-welcome, #3498db);
}

.mascot-speech-bubble[data-type="tip"] {
    border-left: 3px solid var(--mascot-color-tip, #2ecc71);
}

.mascot-speech-bubble[data-type="promotion"] {
    border-left: 3px solid var(--mascot-color-promotion, #f39c12);
}

.mascot-speech-bubble[data-type="alert"] {
    border-left: 3px solid var(--mascot-color-alert, #e74c3c);
}

.mascot-speech-bubble[data-type="skill-step"] {
    border-left: 3px solid var(--mascot-color-skill, #9b59b6);
}

/* Priority-based pulse for critical notifications */
.mascot-speech-bubble[data-priority="critical"] {
    animation: mascot-critical-pulse 1s ease-in-out 3;
}

@keyframes mascot-critical-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}
