/* Styling for the Setup Wizard menu item */
.toplevel_page_wp_oopspam_settings_page .wp-submenu li:last-child a {
    color: #72aee6;
    font-weight: 600;
    padding-top: 8px;
    border-top: 1px solid rgba(240, 246, 252, 0.1);
    margin-top: 6px;
}

.toplevel_page_wp_oopspam_settings_page .wp-submenu li:last-child a:hover,
.toplevel_page_wp_oopspam_settings_page .wp-submenu li:last-child a:focus {
    color: #fff;
    background-color: #2271b1;
}

.row-actions a.oopspam-action-pending {
    pointer-events: none;
    opacity: 0.8;
}

.oopspam-row-action-indicator {
    margin-left: 6px;
    color: #50575e;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.oopspam-row-action-indicator::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 2px solid #8c8f94;
    border-top-color: transparent;
    border-radius: 50%;
    animation: oopspam-spin 0.7s linear infinite;
}

@keyframes oopspam-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
