/* include/assets/css/recipient-ui.css
   Spinner used inside buttons and small helpers for the recipients UI */

.wcsr-button-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    vertical-align: middle;
    border: 2px solid rgba(0,0,0,0.15);
    border-top-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    animation: wcsr-spin 0.75s linear infinite;
}

/* ensure spinner visible in dark buttons too */
button:disabled .wcsr-button-spinner { opacity: 0.9; }

@keyframes wcsr-spin {
  to { transform: rotate(360deg); }
}

/* small layout niceties */
.woocommerce-subscription-recipients .recipient-limit-info { margin-bottom: 8px; color: #555; font-size: 14px; }
.woocommerce-subscription-recipients .recipient-actions .button { margin-right: 6px; }
#recipient-messages { display:none; margin-top:10px; }
