/* assets/css/woocommerce-app.css */

/* --- ปุ่มยืนยันรับสินค้า --- */
.btn-confirm-receipt {
    background: #ff9800 !important;
    color: #fff !important;
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.btn-confirm-receipt:hover { 
    background: #f57c00 !important; 
    transform: translateY(-2px); 
}
.btn-confirm-receipt.loading { 
    opacity: 0.7; 
    pointer-events: none; 
}

/* --- Global Order Popup Loading --- */
.gop-loading { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    height: 200px; 
    color: #999; 
    gap: 15px; 
}
.gop-loading i { 
    font-size: 30px; 
    color: #04a39c; 
}
@keyframes spin { 
    100% { transform: rotate(360deg); } 
}
.spin { 
    animation: spin 1s linear infinite; 
}
.gop-error { 
    color: red; 
    text-align: center; 
    padding: 20px; 
}