.custom-upsell-products {
    display: flex;
    flex-direction: column;
}

.upsell-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative; /* Make parent relative for absolute positioning */
}

.upsell-name, .upsell-price {
    margin-left: 10px;
}

.upsell-info {
    margin-left: 10px;
    cursor: pointer;
}

.tooltip_templates {
    display: none;
    position: absolute;
    top: -10px; /* Adjust as necessary */
    left: 30px; /* Adjust as necessary */
    background-color: #eeeae7;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 999;
    width: 200px; /* Adjust as necessary */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tooltip_templates img {
    max-width: 50px;
    margin-right: 10px;
}

.tooltip_content {
    display: flex;
}

.tooltip_content .left-column {
    flex: 1;
}

.tooltip_content .right-column {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.tooltip_content .right-column .product-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.tooltip_content .right-column .product-price {
    color: #666;
}
