/* Prominent New Order button styling to match modern orders UI */

.submenu .new-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px; /* pill */
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25), 0 2px 6px rgba(0,0,0,0.06);
  border: none;
}

.submenu .new-order-btn .icon { width: 16px; height: 16px; }

.submenu .new-order-btn:focus {
  outline: 3px solid rgba(37,99,235,0.35);
  outline-offset: 2px;
}

.submenu .new-order-btn:hover { filter: brightness(1.05); text-decoration: none; }
.submenu .new-order-btn:active { transform: translateY(0.5px); }

/* Respect dark text on hover in case of global resets */
.submenu .new-order-btn span { color: inherit; }

