/* Frontend styles for checkout data capture */
.wc-checkout-data-capture-notice {
    background: #e7f3ff;
    border-left: 4px solid #0073aa;
    padding: 12px;
    margin: 16px 0;
    font-size: 14px;
    color: #0073aa;
}

.wc-checkout-data-capture-saving {
    position: fixed;
    top: 32px;
    right: 20px;
    background: #46b450;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wc-checkout-data-capture-saving.show {
    opacity: 1;
}