/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 2, 2025, 11:16:19 AM
    Author     : YA MUHAMMAD (S.A.W.W
*/

.search-results-container {
    max-height: 500px;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    padding: 10px;
}

.search-result-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

.search-result-item:last-child {
    border-bottom: none;
}

.product-image-container {
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scrollbar Styling */
.search-results-container::-webkit-scrollbar {
    width: 6px;
}

.search-results-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
