/* Secret Comment Alert Popup Styles */
.scm-alert-popup {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(10px);
    pointer-events: none; /* Prevent blocking clicks */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.scm-alert-popup.show {
    opacity: 1;
    transform: translateY(0);
}

/* Arrow indicator */
.scm-alert-popup::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Position at the bottom of the tooltip */
    left: 50%;
    margin-left: -6px;
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}
