		.search-container {
            position: relative;
            margin: 20px 0;
            max-width: 600px;
			 z-index: 1000
        }
        .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 5px 5px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            	z-index: 1001; /* Konteynerden daha yüksek */
            display: none;
            max-height: 400px;
            overflow-y: auto;
			  position: absolute;
	
        }
        .search-result-item {
            padding: 8px 12px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s;
            min-height: 55px;
        }
        .search-result-item:hover {
            background: #f8f9fa;
            transform: translateX(3px);
        }
        .search-result-item:last-child {
            border-bottom: none;
        }
        .urun_arama_resim {
            width: 45px;
            height: 45px;
            object-fit: cover;
            margin-right: 10px;
            border-radius: 3px;
            flex-shrink: 0;
            border: 1px solid #eee;
        }
        .product-info {
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }
        .product-name {
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #333;
        }
        .product-details {
            font-size: 0.75rem;
            color: #666;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .product-brand {
            margin-right: 8px;
            background: #e9ecef;
            padding: 1px 5px;
            border-radius: 2px;
        }
        .product-code {
            background: #f0f0f0;
            padding: 1px 5px;
            border-radius: 2px;
            font-size: 0.7rem;
        }
        .urun_arama_fiyat {
            font-weight: bold;
            color: #ff003c;
            font-size: 0.85rem;
            margin-left: 8px;
            flex-shrink: 0;
        }
        .no-results {
            padding: 15px;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }
        .loading {
            padding: 15px;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }
        .search-header {
            padding: 8px 12px;
            background: #f8f9fa;
            font-weight: 600;
            font-size: 0.8rem;
            border-bottom: 1px solid #eee;
            color: #555;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .result-count {
            background: #ff003c;
            color: white;
            border-radius: 10px;
            padding: 1px 6px;
            font-size: 0.7rem;
        }
        .item-number {
            display: inline-block;
            width: 20px;
            text-align: center;
            font-size: 0.75rem;
            color: #999;
            margin-right: 8px;
            flex-shrink: 0;
        }
        /* Scrollbar stilleri */
        .search-results::-webkit-scrollbar {
            width: 6px;
        }
        .search-results::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        .search-results::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 3px;
        }
        .search-results::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
		
		