/* VRobo WooCommerce Frontend Styles */

.vrobo-order-widget {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
}

.vrobo-order-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.vrobo-order-status.completed {
    background: #d4edda;
    color: #155724;
}

.vrobo-order-status.processing {
    background: #fff3cd;
    color: #856404;
}

.vrobo-order-status.pending {
    background: #f8d7da;
    color: #721c24;
}

.vrobo-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background: #2271b1;
    color: white;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.vrobo-notification.show {
    transform: translateX(0);
}

.vrobo-notification.success {
    background: #00a32a;
}

.vrobo-notification.error {
    background: #d63638;
}

.vrobo-api-status {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
}

.vrobo-api-status.sent {
    background: #d4edda;
    color: #155724;
}

.vrobo-api-status.pending {
    background: #fff3cd;
    color: #856404;
}

.vrobo-api-status.failed {
    background: #f8d7da;
    color: #721c24;
}