/* Amazon Product Bar Extension Styles */ .amazon-ext-product-bar { width: 100%; min-height: 30px; background-color: #ff9900; background: linear-gradient(135deg, #ff9900 0%, #ffb84d 100%); border-radius: 6px; margin-top: 8px; margin-bottom: 4px; box-sizing: border-box; position: relative; z-index: 1000; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 12px; text-shadow: 0 1px 2px rgba(0,0,0,0.3); box-shadow: 0 2px 4px rgba(0,0,0,0.1); } /* Ensure the bar doesn't interfere with existing Amazon functionality */ .amazon-ext-product-bar:hover { background: linear-gradient(135deg, #e68a00 0%, #ff9900 100%); transform: translateY(-1px); box-shadow: 0 3px 6px rgba(0,0,0,0.15); } /* Prevent layout shifts during injection */ .amazon-ext-product-bar { transition: all 0.2s ease; } /* Make sure it's visible on all backgrounds */ .amazon-ext-product-bar { border: 1px solid rgba(0,0,0,0.1); }