body {
    font-family: Arial, sans-serif;
}

.gift-wrap-container {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
}

.hidden {
    display: none;
}

.gift-boxes {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.gift-box {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gift-box:hover {
    border-color: #007BFF;
}
.selected {
    border: 2px solid #007BFF; /* Change this color as needed */
}



#results-container {
    overflow: auto; /* Enable scrolling */
}

.result-item {
    padding: 10px;
    margin-top: 5px;
    display: flex; /* Use flexbox for layout */
    align-items: flex-start; /* Align items at the start of the container */
}

.product-image {
    width: 50px; /* Set width for the image */
    height: auto; /* Maintain aspect ratio */
    margin-right: 15px; /* Space between image and text */
}

.search-details { /* Changed from product-details to search-details */
    display: flex;
    flex-direction: column; /* Stack name and price vertically */
    justify-content: center; /* Center align items vertically within their column */
}


.product-name {
    font-size: 16px; /* Adjust font size for product name */
    font-weight: bold;
    color: black; 
    margin-bottom: 5px; /* Space between name and price */
}

.product-price {
    font-size: 14px; /* Adjust font size for price */
    color: #FFD700; /* Change color for better visibility */
}


.bold-text {
    font-weight: bold;
    color: black; 
}
