/* Notification Badge Component Styles */
.asc-notification-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.asc-notification-badge__counter {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
    border-radius: 9px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .asc-notification-badge__counter {
        min-width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }
}