/* notification red dot for filament action buttons that have the `has-notes` class */
.has-notes {
    position: relative;
}

.has-notes::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 8px;
    height: 8px;
    background-color: #ef4444; /* red */
    border-radius: 9999px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85); /* subtle white ring */
    pointer-events: none;
}
