.search-container {
    position: relative;
}

.product-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.products-list {
    padding: 0;
}

.product-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.product-item:hover {
    background-color: #f8f9fa;
}

.product-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.product-info {
    flex: 1;
}

.product-name {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.product-meta {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.product-stock {
    margin: 0;
    font-size: 12px;
    color: #28a745;
}

.product-price {
    margin: 0;
    font-weight: 600;
    color: #007bff;
}

.material-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

#materials-table {
   
}
